0
0
Google Sheetsspreadsheet~20 mins

MIN and MAX functions in Google Sheets - 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
2:00remaining
Find the minimum value ignoring text
Given the range A1:A5 contains the values {10, "apple", 5, 20, "banana"}, what is the result of the formula =MIN(A1:A5)?
A5
Bapple
C10
DError
Attempts:
2 left
💡 Hint
MIN ignores text values and only considers numbers.
📊 Formula Result
intermediate
2:00remaining
Find the maximum value with negative numbers
If the range B1:B4 contains the values {-3, -10, -1, -7}, what does the formula =MAX(B1:B4) return?
A0
B-10
C-1
DError
Attempts:
2 left
💡 Hint
MAX finds the largest number, even if all are negative.
Function Choice
advanced
2:30remaining
Choose the correct formula to find the max excluding zeros
You want to find the maximum value in range C1:C6 but ignore any zeros. Which formula will correctly do this?
A=MAX(IF(C1:C6=0, "", C1:C6))
B=MAX(FILTER(C1:C6, C1:C6<>0))
C=MAX(C1:C6)
D=MAX(IF(C1:C6>0, C1:C6))
Attempts:
2 left
💡 Hint
Use FILTER to exclude zeros before finding MAX.
🎯 Scenario
advanced
2:30remaining
Calculate the range (difference between max and min) ignoring blanks
You have numbers in D1:D8 with some blank cells. Which formula correctly calculates the difference between the maximum and minimum values ignoring blanks?
A=MAX(FILTER(D1:D8, D1:D8<>""))-MIN(FILTER(D1:D8, D1:D8<>""))
B=MAX(D1:D8)-MIN(D1:D8)+COUNTBLANK(D1:D8)
C=MAX(D1:D8)-MIN(IF(D1:D8<>"", D1:D8))
D=MAX(D1:D8)-MIN(D1:D8)
Attempts:
2 left
💡 Hint
Use FILTER to exclude blanks before calculating min and max.
data_analysis
expert
3:00remaining
Analyze output of nested MIN and MAX with conditions
Given the range E1:E7 contains {4, 9, 2, 15, 7, 3, 10}, what is the output of the formula =MIN(MAX(E1:E7), 8)?
AError
B15
C4
D8
Attempts:
2 left
💡 Hint
MAX(E1:E7) finds the largest number, then MIN compares it with 8.