Re: Search Cell for Multiple Criteria with a List
This formula
=IF(SUM(--ISNUMBER(SEARCH(A2,'Flagged Addresses'!$A$1:$A$100)))>0,"present","Not Present")
Appears to work completely (Thanks Justin), except for one issue.
When the address has an apartment.
Example:
"7700 Delaware Dr" is in the list of flagged addresses. An address comes up as "7700 Delaware Dr APT 3121".
Because of the apartment, it doesn't get flagged by the formula. Is there a way to make so that it doesn't have to be an exact match?
I've tried:
=IF(SUM(--ISNUMBER(SEARCH(A2,('Flagged Addresses'!$A$1:$A$100)&"*")))>0,"present","Not Present")
but that doesn't work.
Here's the new sheet with the new formula.