I know this may seem simple, but I'm going insane at this point.
Say I have the value 123456 (a cell in a sheet), and I want to search for it in the table below in another sheet and return the corresponding A column value:
A B C D
1 651655 231232 543653 453242
2 561632 151241 123456 453425
3 156321 534254 453455 445364
I have tried:
=INDEX(A:A,MATCH(123456,B:D,0))
=INDEX(A:A,MATCH(123456,B:B & C:C & D:D,0))
But alas, I only return N/A. I have over 1000 "123456"s I need to search and assign corresponding values, so doing it by hand is not an option
When I do: =INDEX(A:A,MATCH(123456,C:C,0)) it works, but I need to be able to check all columns.
If they are always number value then could try
SUMPRODUCT().For number or text could try-