Complete the formula to find the exact match of "Apple" in the range A1:A10.
=VLOOKUP("Apple", A1:A10, 1, [1])
Using FALSE in VLOOKUP tells Excel to find an exact match.
Complete the formula to find the closest match less than or equal to 50 in B1:B10.
=VLOOKUP(50, B1:B10, 1, [1])
Using TRUE enables approximate match, which finds the closest value less than or equal to the lookup value.
Fix the error in the formula to perform an exact match lookup for "Banana" in C1:D10.
=VLOOKUP("Banana", C1:D10, 2, [1])
FALSE ensures exact match. TRUE or 1 causes approximate match, which may return wrong results or errors.
Fill both blanks to create a formula that finds the exact match of 100 in E1:F20 and returns the value from the second column.
=VLOOKUP([1], E1:F20, [2], FALSE)
The lookup value is 100, and the column index to return is 2 for the second column.
Fill all three blanks to create a formula that looks up "Orange" in G1:H15, returns the value from the second column, and uses exact match.
=VLOOKUP([1], [2], [3], FALSE)
Lookup value is "Orange", range is G1:H15, column index is 2, and FALSE for exact match.