Reputation: 38795
Suppose I have the 2 cell as below
A1: Hello World
B1: orl
How can I use a formula to check if any part of B1 is also in A1 then print true?
The formula may look like
if any part of B1 is also in A1 then print true
Thanks
Upvotes: 0
Views: 1584
Reputation: 35943
=ISNUMBER(FIND(B1,A1))
will print out TRUE if A1 contains B1, or FALSE if it doesn't
Upvotes: 4