Complete the formula to perform an exact match using VLOOKUP.
=VLOOKUP(A2, B2:C10, 2, [1])
Using FALSE in VLOOKUP forces an exact match.
Complete the formula to perform an approximate match using VLOOKUP.
=VLOOKUP(A2, B2:C10, 2, [1])
Using TRUE in VLOOKUP enables approximate match.
Fix the error in the formula to ensure exact match with VLOOKUP.
=VLOOKUP(A2, B2:C10, 2, [1])
The last argument must be FALSE for exact match; TRUE causes approximate match.
Fill both blanks to create a formula that returns an exact match or "Not found" if no match exists.
=IFERROR(VLOOKUP(A2, B2:C10, [1], [2]), "Not found")
Column 2 is the return column, and FALSE ensures exact match. IFERROR handles missing values.
Fill both blanks to create a formula that performs an approximate match and returns the value from the third column.
=VLOOKUP(A2, B2:D10, [1], [2])
Column index 3 returns the value from the third column, TRUE enables approximate match.