MIN
Returns the minimum value in a list of arguments.
StatisticalBeginner EssentialsMost UsedStatistics & Analysis
What it does
Returns the smallest number in a set of values.
Syntax
MIN(number1, [number2], ...)
Arguments
number1(number|range) β First value or range.
Examples
Minimum of a range
Find the minimum value in A2:A6.
FORMULA
=MIN(A2:A6)
RESULT
8
SAMPLE DATA
| A | |
|---|---|
| 1 | Value |
| 2 | 10 |
| 3 | 12 |
| 4 | 8 |
| 5 | 15 |
| 6 | 20 |