Syntax
| Parameter | Description |
|---|---|
| value1 | Parameter of the MIN function. |
| [value2 | (Optional.) Parameter of the MIN function. |
| ...] | Parameter of the MIN function. |
Examples
Find the lowest price
=MIN(C2:C200)
Find the earliest date
=MIN(B2:B50)
Find minimum excluding zeros
=MINIFS(B2:B100, B2:B100, ">0")
Common Errors
The range has no numbers, or it contains zeros which are the actual minimum. Use MINIFS to exclude zeros if needed.
A text value was passed directly. MIN only works with numbers; it ignores text in ranges but errors on direct text arguments.
Tips
To find the smallest non-zero value: =MINIFS(B:B, B:B, ">0") or in older Excel: =MIN(IF(B2:B100>0, B2:B100)) entered as array formula.
Use =SMALL(range, 2) for the second smallest value, =SMALL(range, 3) for third smallest.
MIN works with dates to find the earliest: =MIN(A2:A100) returns the oldest date in the range.
Try MIN in Viztab
Import your data and use MIN with 370+ other formulas. No signup required.
Open Viztab