I want to search for several values in several columns, with text strings and return the wanted value.
I tried the following, which gives me for one column an indication of a string:
=IFERROR(INDEX($E$3:$E$7,MATCH(TRUE,ISNUMBER(SEARCH($E$3:$E$7,A2)),0)),"Not Found")
My sheet looks like the following:
The column Tried... only matches Match 3, hence I only get return back.
I was thinking of making a large if-else statement, however is there a smart way to search for multiple values in multiple columns?
Any suggestions, how to give the search function multiple values?
I appreciate your replies!

A2 & B2 & C2This will return the first value on the list found in one of the three columns.