0
0
Google Sheetsspreadsheet~20 mins

VLOOKUP function in Google Sheets - 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 is the result of the formula =VLOOKUP("Banana", A2:B4, 2, FALSE)?
A0.5
BBanana
C#N/A
D1.2
Attempts:
2 left
💡 Hint
Look for the value in the first column and return the value from the second column.
Function Choice
intermediate
2:00remaining
Which VLOOKUP formula returns the price of 'Cherry'?
Using the same table as above, which formula correctly returns the price of 'Cherry'?
A=VLOOKUP("Cherry", A2:B4, 1, FALSE)
B=VLOOKUP("Cherry", A2:B4, 2, FALSE)
C=VLOOKUP("Cherry", B2:A4, 2, FALSE)
D=VLOOKUP("Cherry", A1:B4, 2, TRUE)
Attempts:
2 left
💡 Hint
Remember the lookup range must include the lookup column first and the column index must be correct.
📊 Formula Result
advanced
2:00remaining
What is the output of this VLOOKUP with approximate match?
Given the table:

A1: Score
A2: 0
A3: 50
A4: 70
A5: 90

B1: Grade
B2: F
B3: C
B4: B
B5: A

What is the result of =VLOOKUP(85, A2:B5, 2, TRUE)?
AB
BC
CA
D#N/A
Attempts:
2 left
💡 Hint
With approximate match TRUE, VLOOKUP finds the largest value less than or equal to the lookup value.
🎯 Scenario
advanced
2:00remaining
Why does this VLOOKUP formula return #N/A?
You have this table:

A1: ID
A2: 101
A3: 102
A4: 103

B1: Name
B2: John
B3: Jane
B4: Joe

You use the formula =VLOOKUP(104, A2:B4, 2, FALSE).
Why does it return #N/A?
ABecause the range A2:B4 is missing headers
BBecause the column index 2 is invalid
CBecause 104 is not found in the first column of the range
DBecause FALSE is not a valid argument for VLOOKUP
Attempts:
2 left
💡 Hint
Check if the lookup value exists in the first column of the range.
data_analysis
expert
2:00remaining
How many items will this VLOOKUP formula find?
Given the table:

A1: Item
A2: Pen
A3: Pencil
A4: Pen
A5: Eraser

B1: Price
B2: 1.5
B3: 0.5
B4: 1.7
B5: 0.8

What value will =VLOOKUP("Pen", A2:B5, 2, FALSE) return?
A1.7
B#N/A
C0.5
D1.5
Attempts:
2 left
💡 Hint
VLOOKUP returns the first match it finds in the lookup column.