Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What does the MIN function do in Excel?
The MIN function finds the smallest number in a group of numbers or cells.
Click to reveal answer
beginner
What does the MAX function do in Excel?
The MAX function finds the largest number in a group of numbers or 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 only consider cells with numbers.
Click to reveal answer
What will =MIN(3, 7, 2, 9) return?
A2
B7
C9
D3
✗ Incorrect
MIN returns the smallest number, which is 2.
What does =MAX(A1:A4) do if A1=5, A2=8, A3=3, A4=10?
A5
B10
C8
D3
✗ Incorrect
MAX returns the largest number, which is 10.
If cells A1=4, A2 is empty, A3=7, what does =MIN(A1:A3) return?
A4
BError
C7
D0
✗ Incorrect
Empty cells are ignored, so MIN returns 4.
Which formula finds the largest value in cells C1 to C5?
A=AVERAGE(C1:C5)
B=MIN(C1:C5)
C=SUM(C1:C5)
D=MAX(C1:C5)
✗ Incorrect
MAX finds the largest value in the range.
What happens if you use =MIN() with no numbers or cells?
AReturns 0
BReturns the current date
CReturns an error
DReturns 1
✗ Incorrect
MIN with no arguments returns an error because it needs numbers to compare.
Explain how to use the MIN function to find the smallest number in a list of cells.
Think about how you find the lowest price in a shopping list.
You got /4 concepts.
Describe the difference between MIN and MAX functions and when you might use each.
Think about checking who scored the least or the most in a game.
You got /4 concepts.
Practice
(1/5)
1. What does the MIN function do in Excel?
easy
A. Finds the smallest number in a range of cells
B. Finds the largest number in a range of cells
C. Adds all numbers in a range of cells
D. Counts how many numbers are in a range of cells
Solution
Step 1: Understand the purpose of MIN function
The MIN function looks through a list of numbers and finds the smallest one.
Step 2: Compare with other options
MAX finds the largest, SUM adds numbers, COUNT counts numbers. Only MIN finds smallest.
Final Answer:
Finds the smallest number in a range of cells -> Option A
Quick Check:
MIN = smallest number [OK]
Hint: MIN always returns the smallest number in your selected cells [OK]
Common Mistakes:
Confusing MIN with MAX
Thinking MIN adds numbers
Using MIN to count cells
2. Which of these is the correct way to write a formula to find the maximum value in cells A1 to A5?
easy
A. =MAX(A1-A5)
B. =max(A1:A5)
C. =Max(A1;A5)
D. =max(A1,A5)
Solution
Step 1: Check correct syntax for MAX function
MAX function uses parentheses and a colon to specify a range: MAX(A1:A5).
Step 2: Analyze each option
=max(A1:A5) uses correct syntax. =MAX(A1-A5) uses minus sign, which is wrong. =Max(A1;A5) uses semicolon, which is invalid in Excel formulas. =max(A1,A5) only checks two cells, not the full range.
Final Answer:
=max(A1:A5) -> Option B
Quick Check:
MAX(range) uses colon for range [OK]
Hint: Use colon (:) to select a range inside MAX or MIN [OK]
Common Mistakes:
Using minus (-) instead of colon (:)
Using semicolon (;) instead of colon
Selecting only two cells instead of a range
3. Given the values in cells B1 to B5 as 10, 25, 7, 30, and 15 respectively, what will the formula =MIN(B1:B5) return?
medium
A. 7
B. 10
C. 15
D. 30
Solution
Step 1: Identify the values in the range B1:B5
The values are 10, 25, 7, 30, and 15.
Step 2: Find the smallest number among these values
The smallest number is 7.
Final Answer:
7 -> Option A
Quick Check:
MIN(10,25,7,30,15) = 7 [OK]
Hint: MIN returns the smallest number in the selected cells [OK]
Common Mistakes:
Choosing the first number instead of the smallest
Confusing MIN with MAX
Selecting a number outside the range
4. You wrote the formula =MAX(A1:A4, A5:A8) but Excel shows an error. What is the problem and how to fix it?
medium
A. MAX cannot take multiple ranges; combine ranges with a comma
B. MAX can take multiple ranges but they must be separated by semicolons, so use semicolons
C. MAX can take multiple ranges but they must be separated by commas, so formula is correct
D. MAX can take multiple ranges separated by commas, but ranges must be enclosed in parentheses separately
Solution
Step 1: Understand MAX function syntax for multiple ranges
MAX can accept multiple ranges separated by commas, like MAX(A1:A4, A5:A8).
Step 2: Check why error might occur
If error occurs, it might be due to regional settings using semicolons instead of commas. But standard Excel uses commas.
Final Answer:
MAX can take multiple ranges but they must be separated by commas, so formula is correct -> Option C
Quick Check:
MAX(range1, range2) works with commas [OK]
Hint: Separate multiple ranges with commas inside MAX [OK]
Common Mistakes:
Using semicolons instead of commas
Trying to add ranges with plus signs
Not enclosing ranges properly
5. You have sales data in cells C2 to C10. You want to find the difference between the highest and lowest sales values. Which formula will give you the correct result?
hard
A. =MAX(C2:C10) * MIN(C2:C10)
B. =MIN(C2:C10) - MAX(C2:C10)
C. =MAX(C2:C10) + MIN(C2:C10)
D. =MAX(C2:C10) - MIN(C2:C10)
Solution
Step 1: Understand the goal
You want the difference between the highest and lowest sales values, so subtract the smallest from the largest.
Step 2: Analyze each formula
=MAX(C2:C10) - MIN(C2:C10) subtracts MIN from MAX, which is correct. =MIN(C2:C10) - MAX(C2:C10) subtracts MAX from MIN, which gives a negative or wrong result. Options A and C multiply or add, which are not differences.
Final Answer:
=MAX(C2:C10) - MIN(C2:C10) -> Option D
Quick Check:
Difference = largest - smallest [OK]
Hint: Subtract MIN from MAX to get range difference [OK]