Reputation: 228
I have for different, for example, languages same id and want to Vlookup or index, match or some other way to find correct translation row and to show corresponding id number from that row. I can do with 1 list but heres example with 3 languages.
How to find correct number for translation and getting correct number?
Upvotes: 1
Views: 434
Reputation: 2666
Try the SUMPRODUCT function:
=SUMPRODUCT((G2:I6=C2)*(J2:J6))
Note that SUMPRODUCT function cannot return strings. In order to return strings, I would use the INDEX function:
=INDEX($J$2:$J$6,SUMPRODUCT(($G$2:$I$6=C2)*ROW($J$2:$J$6))-1)
Upvotes: 5