Complete the formula to look up the value in cell A2 in the range B2:D10.
=VLOOKUP(A2, [1], 2, FALSE)
The range B2:D10 is where the lookup will happen. It must include the lookup column and the return column.
Complete the formula to return the value from the 3rd column of the range when looking up the value in A5.
=VLOOKUP(A5, C2:E20, [1], FALSE)The third argument is the column index in the range from which to return the value. Since the range is C2:E20, column 3 corresponds to column E.
Fix the error in the formula to perform an exact match lookup for the value in B3.
=VLOOKUP(B3, A1:C15, 2, [1])
The last argument must be FALSE to perform an exact match lookup in VLOOKUP.
Fill both blanks to create a formula that looks up the value in D4 in the range A2:C12 and returns the value from the 3rd column with an exact match.
=VLOOKUP([1], [2], 3, FALSE)
The first blank is the lookup value cell D4. The second blank is the range A2:C12 where the lookup happens.
Fill all four blanks to create a formula that looks up the value in cell B1 in the range A1:D20, returns the value from the 4th column, and performs an exact match.
=VLOOKUP([1], [2], [3], [4])
The lookup value is B1, the range is A1:D20, the column index is 4, and FALSE ensures exact match.