0
0
Excelspreadsheet~20 mins

MIN and MAX functions in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
MIN and MAX Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Find the minimum value in a range
Given the values in cells A1 to A5 as 10, 25, 7, 30, and 15 respectively, what is the result of the formula =MIN(A1:A5)?
A7
B10
C15
D25
Attempts:
2 left
💡 Hint
MIN function returns the smallest number in the range.
📊 Formula Result
intermediate
1:30remaining
Find the maximum value ignoring text
Cells B1 to B5 contain the values 12, "apple", 45, 8, and "banana". What does the formula =MAX(B1:B5) return?
Abanana
Bapple
C45
D12
Attempts:
2 left
💡 Hint
MAX ignores text and returns the largest number.
Function Choice
advanced
2:00remaining
Choose the correct formula to find the smallest positive number
You have numbers in cells C1 to C6: -5, 0, 3, 7, -2, 4. Which formula returns the smallest positive number (greater than zero)?
A=MIN(C1:C6)
B=MAX(IF(C1:C6>0, C1:C6))
C=MAX(C1:C6)
D=MIN(IF(C1:C6>0, C1:C6))
Attempts:
2 left
💡 Hint
You need to filter only positive numbers before finding the minimum.
🎯 Scenario
advanced
2:00remaining
Find the maximum value ignoring errors
Cells D1 to D5 contain: 10, #DIV/0!, 25, #N/A, 15. Which formula correctly returns the maximum numeric value ignoring errors?
A=MAX(IF(ISNUMBER(D1:D5), D1:D5))
B=MAX(IFERROR(D1:D5, 0))
C=MAX(D1:D5)
D=MAX(IF(ISERROR(D1:D5), 0, D1:D5))
Attempts:
2 left
💡 Hint
Use ISNUMBER to filter only numbers before MAX.
data_analysis
expert
2:30remaining
Analyze the output of nested MIN and MAX functions
Given the values in cells E1 to E4 as 5, 15, 10, and 20, what is the result of the formula =MIN(MAX(E1:E4), 12)?
A5
B12
C10
D15
Attempts:
2 left
💡 Hint
First find the MAX, then compare it with 12 using MIN.