Hi,
I have this function that searches column A for words that I listed in column D and returns "found" or "not found".
In the formula below, I only have to search for 4 words in column A so the formula refers to $D$4:$D$8.
I want to be able to add new words in column D so I referenced the entire column when searching. Somehow the SEARCH function messes up and returns an incorrect found/not found response. Can anyone help me?
I have this function that searches column A for words that I listed in column D and returns "found" or "not found".
In the formula below, I only have to search for 4 words in column A so the formula refers to $D$4:$D$8.
Excel Formula:
=IF(SUMPRODUCT(--ISNUMBER(SEARCH($D$4:$D$8,A5)))>0, "found", "not found")
I want to be able to add new words in column D so I referenced the entire column when searching. Somehow the SEARCH function messes up and returns an incorrect found/not found response. Can anyone help me?