0
0
Excelspreadsheet~10 mins

MIN and MAX functions in Excel - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

A list of numbers in cells A1 to A5 representing some values.

CellValue
A110
A225
A37
A430
A515
Formula Trace
=MIN(A1:A5)
Step 1: Values in A1:A5 are {10, 25, 7, 30, 15}
Step 2: MIN(10, 25, 7, 30, 15)
Cell Reference Map
    A   
  +-----+
1 | 10  |
2 | 25  |
3 |  7  |
4 | 30  |
5 | 15  |
  +-----+
Formula references cells A1 through A5.
The formula uses the range A1:A5 which includes all five numbers.
Result
    A       B   
  +-------+-----+
1 | 10    |     |
2 | 25    |     |
3 |  7    |     |
4 | 30    |     |
5 | 15    |     |
6 |       |  7  |
  +-------+-----+
Cell B6 contains the formula =MIN(A1:A5) and shows the result 7.
The smallest number 7 from the range A1:A5 is shown as the result of the MIN function.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =MIN(A1:A5) return?
AThe smallest number in cells A1 to A5
BThe largest number in cells A1 to A5
CThe sum of numbers in cells A1 to A5
DThe average of numbers in cells A1 to A5
Key Result
MIN(range) returns the smallest number in the given range; MAX(range) returns the largest number.