0
0
Excelspreadsheet~20 mins

LARGE and SMALL in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
LARGE and SMALL Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Find the 3rd largest value in a list
Given the numbers in cells A1 to A6: 5, 8, 2, 10, 7, 3, what is the result of the formula =LARGE(A1:A6, 3)?
Excel
=LARGE(A1:A6, 3)
A7
B8
C5
D10
Attempts:
2 left
💡 Hint
Remember, LARGE returns the nth largest value. Here n=3.
📊 Formula Result
intermediate
2:00remaining
Find the 2nd smallest value in a list
Given the numbers in cells B1 to B5: 12, 4, 9, 15, 7, what is the result of the formula =SMALL(B1:B5, 2)?
Excel
=SMALL(B1:B5, 2)
A9
B7
C4
D12
Attempts:
2 left
💡 Hint
SMALL returns the nth smallest value. Here n=2.
Function Choice
advanced
2:00remaining
Choose the correct formula to find the 4th largest value
You have a list of numbers in cells C1 to C10. Which formula correctly returns the 4th largest number?
A=LARGE(C1:C10, 4)
B=SMALL(C1:C10, 4)
C=LARGE(C1:C10, 7)
D=SMALL(C1:C10, 7)
Attempts:
2 left
💡 Hint
LARGE returns the nth largest, SMALL returns nth smallest.
data_analysis
advanced
2:00remaining
Analyze the output of combined LARGE and SMALL formulas
Given the values in D1:D8: 3, 6, 1, 9, 4, 7, 2, 8, what is the result of =LARGE(D1:D8, 2) - SMALL(D1:D8, 3)?
Excel
=LARGE(D1:D8, 2) - SMALL(D1:D8, 3)
A3
B6
C5
D4
Attempts:
2 left
💡 Hint
Find the 2nd largest and 3rd smallest values first, then subtract.
🎯 Scenario
expert
2:00remaining
Identify the error in this formula using LARGE and SMALL
You want to find the 5th largest value in a range E1:E4 containing {10, 20, 30, 40}. Which option describes what happens when you use =LARGE(E1:E4, 5)?
Excel
=LARGE(E1:E4, 5)
AReturns 10 because it treats 5 as the smallest value
BReturns 0 because it cannot find the 5th largest
CReturns 40 because it defaults to the largest value
DReturns #NUM! error because 5 is greater than the number of values
Attempts:
2 left
💡 Hint
Check what happens if the k argument is larger than the number of values.