0
0
Excelspreadsheet~20 mins

MATCH function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
MATCH Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Find the position of a value in a list
Given the list {10, 20, 30, 40, 50} in cells A1:A5, what is the result of =MATCH(30, A1:A5, 0)?
A3
B2
C4
D0
Attempts:
2 left
💡 Hint
MATCH with 0 finds the exact position of the value in the range.
📊 Formula Result
intermediate
1:30remaining
Using MATCH with approximate match
With the sorted list {5, 10, 15, 20, 25} in cells B1:B5, what does =MATCH(18, B1:B5, 1) return?
A5
B4
C2
D3
Attempts:
2 left
💡 Hint
MATCH with 1 finds the largest value less than or equal to the lookup value.
Function Choice
advanced
2:00remaining
Choose the correct MATCH formula for last exact occurrence
You have the list {2, 4, 2, 6, 2} in cells C1:C5. Which formula returns the position of the last exact match of 2?
A=MATCH(2, C1:C5, 0)
B=MAX(IF(C1:C5=2, ROW(C1:C5)-ROW(C1)+1))
C=MATCH(2, C5:C1, 0)
D=MATCH(2, C1:C5, 1)
Attempts:
2 left
💡 Hint
MATCH finds the first match; to find the last, use an array formula with MAX and IF.
🎯 Scenario
advanced
2:00remaining
MATCH function with unsorted data and approximate match
Given the unsorted list {30, 10, 20, 50, 40} in cells D1:D5, what will =MATCH(25, D1:D5, 1) return?
A#N/A error
B1
C3
D2
Attempts:
2 left
💡 Hint
Approximate match requires the list to be sorted ascending.
data_analysis
expert
2:30remaining
Count how many values are less than a threshold using MATCH
You have a sorted list {3, 7, 8, 12, 15, 20} in cells E1:E6. Which formula correctly counts how many values are less than 13?
A=MATCH(13, E1:E6, 1)
B=MATCH(13, E1:E6, 0)
C=MATCH(13, E1:E6, -1)
D=MATCH(12, E1:E6, 1)
Attempts:
2 left
💡 Hint
MATCH with 1 returns the position of the largest value less than or equal to the lookup value.