0
0
Google Sheetsspreadsheet~5 mins

MIN and MAX functions in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the MIN function do in Google Sheets?
The MIN function finds the smallest number in a list of numbers or range of cells.
Click to reveal answer
beginner
What does the MAX function do in Google Sheets?
The MAX function finds the largest number in a list of numbers or range of cells.
Click to reveal answer
beginner
How do you write a formula to find the smallest number in cells A1 to A5?
Use =MIN(A1:A5) to get the smallest number in cells A1 through A5.
Click to reveal answer
beginner
How do you write a formula to find the largest number in cells B1 to B10?
Use =MAX(B1:B10) to get the largest number in cells B1 through B10.
Click to reveal answer
intermediate
Can MIN and MAX functions handle numbers and empty cells together?
Yes, MIN and MAX ignore empty cells and text; only numbers are considered.
Click to reveal answer
What will =MIN(3, 7, 2, 9) return?
A2
B9
C3
D7
Which formula finds the largest value in cells C1 to C5?
A=SUM(C1:C5)
B=MIN(C1:C5)
C=MAX(C1:C5)
D=AVERAGE(C1:C5)
If cells A1=5, A2=empty, A3=10, what does =MIN(A1:A3) return?
A5
B0
Cempty
D10
What happens if you use =MAX() with no arguments?
AReturns 0
BReturns 1
CReturns blank
DReturns an error
Which function would you use to find the lowest price from a list?
AMAX
BMIN
CSUM
DCOUNT
Explain how to use the MIN function with a range of cells.
Think about finding the lowest value in a list of numbers.
You got /4 concepts.
    Describe the difference between MIN and MAX functions.
    One finds the lowest, the other finds the highest.
    You got /4 concepts.