Complete the formula to look up a value in the first column of a table and return the value from the second column.
=VLOOKUP(A2, B2:D10, [1], FALSE)The third argument in VLOOKUP is the column index number from which to return the value. Since we want the second column, we use 2.
Complete the formula to perform an exact match lookup for the value in cell A5.
=VLOOKUP(A5, A1:C20, 3, [1])
The fourth argument in VLOOKUP specifies whether to find an approximate match (TRUE) or exact match (FALSE). For exact match, use FALSE.
Fix the error in the formula to correctly look up the value in cell B3 and return the value from the fourth column.
=VLOOKUP([1], A1:D15, 4, FALSE)
The lookup value should be the cell B3 as stated. Using B3 ensures the formula looks up the correct value.
Fill both blanks to create a VLOOKUP formula that looks up the value in cell C2, searches the range A2:E20, and returns the value from the fifth column with an exact match.
=VLOOKUP([1], [2], 5, FALSE)
The lookup value is cell C2, and the table array is the range A2:E20. The formula returns the value from the fifth column with exact match.
Fill all three blanks to create a VLOOKUP formula that looks up the value in cell D4, searches the range B1:F30, and returns the value from the third column with an exact match.
=VLOOKUP([1], [2], [3], FALSE)
The lookup value is D4, the table array is B1:F30, and the column index is 3 to return the third column's value with exact match.