I'm looking for a formula that can search a given list of strings and match a certain cell based on whether that cell contains text that appears in any part of a string from the list.
An example to show what I want to achieve:
Reference_List:
Some Product A
Another Example
(XYZ) FinalTest
ABC (Acronym Explanation)
List that I'm searching through:
FooBar
Another Example
QuickBrownFox
JumpedOverLazy Example
Acronym Explanation (ABC)
FinalTest (XYZ)
Ideal Matches Found:
Another Example
JumpedOverLazy Example (false positive but I would be okay with it)
Acronym Explanation (ABC)
FinalTest (XYZ)
So as you can see, it's testing the Search List against every sub-string in the Reference_List
Also, I don't mind if it contains false positives, but currently I'm running into too many false negatives with things like: (where List_REF is the name of cells e.g. A1:A20)
=SUMPRODUCT(--ISNUMBER(SEARCH(LIST_REF,A1)))>0
I've also looked at this example but I was unable to get it to work properly
Any help would be appreciated, Thank you
Edit:
Another Idea? Maybe if I could split each cell in the reference list into an array based on "spaces", then feed those arrays into the SUMPRODUCT function seen above that would search every cell by the sub array? Don't know how to do it but I'm gonna look into it
Acronym Explanation (ABC)
it's also a false positive. Please clarify. Also are you willing to use a vba Function, or working columns? – EEM