0
0
Excelspreadsheet~20 mins

VLOOKUP function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
VLOOKUP Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this VLOOKUP formula?
Given the table below in cells A1:B4:

A1: Product
A2: Apple
A3: Banana
A4: Cherry

B1: Price
B2: 1.2
B3: 0.5
B4: 2.0

What value will the formula =VLOOKUP("Banana", A2:B4, 2, FALSE) return?
A0.5
B1.2
C#N/A
D2.0
Attempts:
2 left
💡 Hint
Remember that VLOOKUP searches the first column of the range for the lookup value.
📊 Formula Result
intermediate
2:00remaining
What happens if VLOOKUP's range_lookup is TRUE?
Using the same table as before, what will =VLOOKUP("Blueberry", A2:B4, 2, TRUE) return?

Note: The table is sorted alphabetically by Product.
A0.5
B1.2
C2.0
D#N/A
Attempts:
2 left
💡 Hint
When range_lookup is TRUE, VLOOKUP finds the closest match less than or equal to the lookup value.
📊 Formula Result
advanced
2:00remaining
What error does this VLOOKUP formula produce?
Given the table in A1:B4 as before, what error will the formula =VLOOKUP("Cherry", A2:A4, 2, FALSE) produce?
A#N/A
B#VALUE!
C#REF!
D2.0
Attempts:
2 left
💡 Hint
Check the range used for the lookup and the column index number.
Function Choice
advanced
2:00remaining
Which formula correctly finds the price of "Cherry"?
You want to find the price of "Cherry" from the table in A1:B4. Which formula will return the correct price?
A=VLOOKUP("Cherry", A1:B4, 3, FALSE)
B=VLOOKUP("Cherry", B2:B4, 2, FALSE)
C=VLOOKUP("Cherry", A2:B4, 1, TRUE)
D=VLOOKUP("Cherry", A2:B4, 2, FALSE)
Attempts:
2 left
💡 Hint
Remember the lookup range must include the lookup column and the return column.
🎯 Scenario
expert
3:00remaining
How many items will this VLOOKUP formula find?
You have a table in A1:C6:

A1: ID  B1: Name   C1: Score
A2: 101 B2: John C2: 85
A3: 102 B3: Jane C3: 90
A4: 103 B4: John C4: 78
A5: 104 B5: Mike C5: 88
A6: 105 B6: John C6: 92


You use the formula =VLOOKUP("John", B2:C6, 2, FALSE). How many times will this formula find "John" and return a score?
A3
B1
C0
D5
Attempts:
2 left
💡 Hint
VLOOKUP returns only the first match it finds in the lookup column.