Help Finding One of a group of words in a given cell

chrs0049

New Member
Joined
May 4, 2011
Messages
9
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.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Excel Workbook
ABC
1AirborneAirAir
2BlackberryLineLine
3Care Oneberryberry
4Esskay
5Swing Line
6Verizon 3G
Sheet1
Excel 2007
Cell Formulas
RangeFormula
C1=IF(ISNUMBER(FIND(B1,A$1:A$6))>0,B1,"")
C2=IF(ISNUMBER(FIND(B2,A$1:A$6))>0,B2,"")
C3=IF(ISNUMBER(FIND(B3,A$1:A$6))>0,B3,"")
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,849
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top