[EXCEL 365] Search Multiple Strings in String

jimea

New Member
Joined
Mar 13, 2019
Messages
1
Hello Guys,

maybe my problem is a bit more complex, but i want to solve it with formulas.

I just need a true or false as output.

At first =Find(range,string) doesnt work, i can just put one value into the searched value. If i try, i get false.
Example Table

A B
1 auto "auto likes flowers thats it"
2 flower "house"
3 house "bla auto blub"
4 "just something"

Now i want that the formula looks with the words from A in B for at least one hit. If not then false.
C1 - true
C2 - true
C3 - true
C4 - false


To use IF/OR/AND is not possible. Columne A will have 670 entrys to looking for, and B have 2100 string to be checked.

Maybe someone have a good idea to solve that.
=find($A$1:$A$3,C1) dont work, there is a false if i try. Same with search()

Have a nice week :).

Greetings
Jimea
 

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
Perhaps

Excel 2016 (Windows) 32 bit
A
B
C
D
1
Formula
2
autoauto likes flowers thats it
TRUE​
=AND(A2>"",COUNTIF($B$2:$B$1000,"*"&A2&"*")>0)
3
flowerhouse
TRUE​
=AND(A3>"",COUNTIF($B$2:$B$1000,"*"&A3&"*")>0)
4
housebla auto blub
TRUE​
=AND(A4>"",COUNTIF($B$2:$B$1000,"*"&A4&"*")>0)
5
just something
FALSE​
=AND(A5>"",COUNTIF($B$2:$B$1000,"*"&A5&"*")>0)
6
Sheet: Sheet8
 
Upvote 0

Forum statistics

Threads
1,214,426
Messages
6,119,417
Members
448,895
Latest member
omarahmed1

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