Function needed

  • Thread starter Thread starter Jen_T
  • Start date Start date
J

Jen_T

I was curious if there is a formula that I can use to check if a cell
contains any of the values below?

"Q3", "0308", "Q#3, "0408AU", "0408SL, "0408", "0109", "0209", "0309", or
"0409"
 
Try

=IF(COUNT(SEARCH({"Q3","0308","Q#3","0408AU","0408SL","0408","0109","0209","0309","0409"},A1)),"Exist","Cannot find")
 
What if the cell value ,text, has other tect included, is there a way to
check if the cell value contains the text in the formula below?
 
Back
Top