I currently have a list of list of product names in column A:
i.e.
Airborne
Blackberry
Care One
Esskay
Swing Line
Verizon 3G
And a list of "buzz words" in column B:
i.e.
Air
Line
berry
(Both lists are much longer, but just giving you a sample). What I need to do is search each cell in column A to see if it contains ANY of the words in column B. So in this case Airborne, Blackberry, and Swingline would all get 'flagged'.
I found this formula in an old thread:
=OR(ISNUMBER(LOOKUP(2^50,SEARCH("buzz words","A1"))))
But all that does is return a "TRUE" or "FALSE". What I need is for it to return the value which it finds in the A cell. For example, when searching "Blackberry" I need the formula to return "berry" instead of "True"
Does that make sense? The buzz word list is much longer (50-100) words, so I have to rule out using a series of IF statements for each word.
i.e.
Airborne
Blackberry
Care One
Esskay
Swing Line
Verizon 3G
And a list of "buzz words" in column B:
i.e.
Air
Line
berry
(Both lists are much longer, but just giving you a sample). What I need to do is search each cell in column A to see if it contains ANY of the words in column B. So in this case Airborne, Blackberry, and Swingline would all get 'flagged'.
I found this formula in an old thread:
=OR(ISNUMBER(LOOKUP(2^50,SEARCH("buzz words","A1"))))
But all that does is return a "TRUE" or "FALSE". What I need is for it to return the value which it finds in the A cell. For example, when searching "Blackberry" I need the formula to return "berry" instead of "True"
Does that make sense? The buzz word list is much longer (50-100) words, so I have to rule out using a series of IF statements for each word.