Challenge - 5 Problems
VLOOKUP Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this VLOOKUP formula?
Given the table below in cells A1:B4:
What is the result of the formula
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)?Attempts:
2 left
💡 Hint
Look for the value in the first column and return the value from the second column.
✗ Incorrect
VLOOKUP searches for "Banana" in the first column of the range A2:B4. It finds it in A3 and returns the value from the second column in the same row, which is 0.5.
❓ Function Choice
intermediate2:00remaining
Which VLOOKUP formula returns the price of 'Cherry'?
Using the same table as above, which formula correctly returns the price of 'Cherry'?
Attempts:
2 left
💡 Hint
Remember the lookup range must include the lookup column first and the column index must be correct.
✗ Incorrect
Option B correctly looks up 'Cherry' in the first column of A2:B4 and returns the second column value with exact match (FALSE).
📊 Formula Result
advanced2:00remaining
What is the output of this VLOOKUP with approximate match?
Given the table:
What is the result of
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)?Attempts:
2 left
💡 Hint
With approximate match TRUE, VLOOKUP finds the largest value less than or equal to the lookup value.
✗ Incorrect
85 is between 70 and 90, so VLOOKUP returns the grade for 70, which is 'B'.
🎯 Scenario
advanced2:00remaining
Why does this VLOOKUP formula return #N/A?
You have this table:
You use the formula
Why does it return
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?Attempts:
2 left
💡 Hint
Check if the lookup value exists in the first column of the range.
✗ Incorrect
VLOOKUP with FALSE requires an exact match. Since 104 is not in the first column, it returns #N/A.
❓ data_analysis
expert2:00remaining
How many items will this VLOOKUP formula find?
Given the table:
What value will
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?Attempts:
2 left
💡 Hint
VLOOKUP returns the first match it finds in the lookup column.
✗ Incorrect
VLOOKUP finds the first 'Pen' in A2 and returns the corresponding price 1.5 from B2.