Home > Mobile >  "Match" not returning results
"Match" not returning results

Time:06-25

I am trying to look for any match from column A in column D, then if so do something else.

Having problems getting my match to work and not sure why.

I have this forumla in column C.

=IFERROR(IF(MATCH("|"&A2&"|",D$1:D$6,0),"True","False"),"Error")

enter image description here

Not sure if it matters but my values in column A and D are from other formulas in those cells.

CodePudding user response:

Just as a variant you can use find():

enter image description here

Then use iferror() and if() to control what you need for the results.

So added more of your data: enter image description here

CodePudding user response:

I ended up going with this.

=ISNUMBER(MATCH("*|"&A2&"|*",D$1:D$6,0))

Thanks again.

  • Related