Search for text string that matches with a name list

toadddd

New Member
Joined
Jan 7, 2017
Messages
1
Hi everyone

I want to search for some specific text string on List 1 that matches with names on List 2

To make it more visual, I have created 2 dummy lists below. Ideally, it would show that row 1 and 2 are TRUE while row 3 is FALSE. Hope this makes sense

Is there a simple function that can do this? Greatly appreciate your help on this. Thanks in advance

List 1
aa;bb;cc
cc;dd;ee
ff;ee;da

List 2
aa
cc
zz
yy
xx
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
A1:D6

List 1List 2
aa;bb;ccTRUEaa
cc;dd;eeTRUEcc
ff;ee;daFALSEzz
yy
xx

<tbody>
</tbody>

B2, confirmed with CONTROL+SHIFT+ENTER, and copied down:

=OR(ISNUMBER(SEARCH(";"&$D$2:$D$6&";",";"&A2&";")))

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,215,450
Messages
6,124,912
Members
449,195
Latest member
Stevenciu

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