Reputation: 55
Imagine a table like this:
In a different place I'd like to get the "price" of a "product". (Refering to the "product" and returning the "price")
So far, I tried lookup, index - match and a few more things, but none of those have worked for me. :/
If someone knows how to do this, that'd be very helpful!!
Upvotes: 0
Views: 35
Reputation: 11968
You can use INDEX
/MAX
/ COLUMN
functions:
=INDEX($A$1:$C$1;;MAX((F2=$A$2:$C$3)*COLUMN($A$2:$C$3)))
Upvotes: 2