INDEX MATCH is a powerful combination that overcomes VLOOKUP limitations by looking left, right, up, or down to find matching values.
Find values left of lookup column
Faster on large spreadsheets
Horizontal or vertical lookups
Works with changing column positions
Returns value at position
Example: INDEX(A:A, 5)...
Finds position of value
Example: MATCH("A", A:A, 0)...
INDEX(range, MATCH())
Example: INDEX(B:B, MATCH(A2, A:A, 0))...
Use 0 in MATCH
Example: MATCH(value, range, 0)...
Begin the INDEX function
Column with your answer
Start the MATCH function
What to find
Where to search
Use 0 for exact match, double close parentheses