Asked
Active
Viewed 69 times
1 Answers
0
Using =SEARCH({"N.","No.","#"},D5)
formula when you will see how the formula calculates the result using Evaluate Formula, you'll notice
evaluates to
That means formula is searching only for "N."
Therefore to search for the existence of "N.","No.","#"
in a cell, number of approaches are available like:
1. =IF(COUNT(SEARCH({"N.","No.","#"},D5)),1,"")
This formula will give 1
if any of the string in the cell exists.
2. =SUMPRODUCT(--ISNUMBER(SEARCH(find_text,D5)))>0
This formula will give TRUE
if any of the three string exists else FASLE
.

Mrig
- 11,612
- 2
- 13
- 27