I have been able to display a cell into another cell by using a single word from the first cell
Eg.

In Cell (KJV!$F2)
" To know wisdom and instruction; to perceive the words of understanding;"

=IF(ISERR(SEARCH(H$1,KJV!$F2)),"",KJV!$F2)
Where H$1 is "wisdom" this will display properly

I wanted to use multiple words and tried this Formula
=IF(ISERR(SEARCH(H$1&"*"&I$1&"*"&J$1,KJV!$F2)),"",KJV!$F2)
Where H$1 is "wisdom" I$1 is "instruction" J$1 is "understanding" this will display properly as well.

But if I change the order H$1 is "instruction" I$1 is "wisdom" J$1 is "understanding"
This will not display.

What I am looking for is a formula that will allow me to input the words in any order and It will display.

The other problem I discovered is if I use a word like "man" every word containing "man" will display the cell
eg.
many
bibliomania
caiman
horseman

I have tried using a space before and after only to discover that I lose all the results with punctuation. Like "man,"

I hope this explanation is not to complicated.

Thank you in advance for any suggestions.

Eagleintl1