0
0
Excelspreadsheet~20 mins

Approximate vs exact match in Excel - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of Approximate vs Exact Match
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Exact match with VLOOKUP
You have a list of product codes in column A and their prices in column B. You want to find the price of product code "P102" exactly using VLOOKUP. Which formula will return the correct price?
Excel
A1:B5
P101 10
P102 15
P103 20
P104 25
P105 30
A=VLOOKUP("P102", A1:B5, 3, FALSE)
B=VLOOKUP("P102", A1:B5, 1, FALSE)
C=VLOOKUP("P102", A1:B5, 2, FALSE)
D=VLOOKUP("P102", A1:B5, 2, TRUE)
Attempts:
2 left
💡 Hint
Use FALSE for exact match in VLOOKUP.
📊 Formula Result
intermediate
2:00remaining
Approximate match with VLOOKUP
You have a table of scores in column A and grades in column B sorted ascending by scores. You want to find the grade for a score of 78 using approximate match. Which formula returns the correct grade?
Excel
A1:B5
50 F
65 D
75 C
85 B
95 A
A=VLOOKUP(78, A1:B5, 2, TRUE)
B=VLOOKUP(78, A1:B5, 2, FALSE)
C=VLOOKUP(78, A1:B5, 1, TRUE)
D=VLOOKUP(78, A1:B5, 3, TRUE)
Attempts:
2 left
💡 Hint
Approximate match requires sorted data and TRUE as last argument.
Function Choice
advanced
2:00remaining
Choosing between MATCH exact and approximate
You want to find the position of the value 40 in a sorted list in column A. Which MATCH formula will return the position of the closest value less than or equal to 40 if 40 is not found?
A=MATCH(40, A1:A10, 1)
B=MATCH(40, A1:A10, 0)
C=MATCH(40, A1:A10, -1)
D=MATCH(40, A1:A10)
Attempts:
2 left
💡 Hint
Use 1 for approximate match with ascending sorted data.
🎯 Scenario
advanced
2:00remaining
Error caused by approximate match on unsorted data
You use this formula to find a price for product code "P103" in an unsorted list:
=VLOOKUP("P103", A1:B5, 2, TRUE)
What is the likely result?
A#REF! error due to wrong column index
B#N/A error because exact match not found
CCorrect price because VLOOKUP always finds exact match first
DIncorrect price or wrong result because data is not sorted for approximate match
Attempts:
2 left
💡 Hint
Approximate match requires sorted data.
data_analysis
expert
3:00remaining
Comparing outputs of exact vs approximate match
Given the sorted table:
A1:B6
10 Low
20 Medium
30 High
40 Very High
50 Extreme

What is the output of these formulas?
1) =VLOOKUP(35, A1:B6, 2, TRUE)
2) =VLOOKUP(35, A1:B6, 2, FALSE)
A1) Very High<br>2) Medium
B1) High<br>2) #N/A error
C1) Medium<br>2) #N/A error
D1) #N/A error<br>2) High
Attempts:
2 left
💡 Hint
Approximate match returns closest lower value; exact match fails if no exact value.