Help Centre › Functions & Formulas
For a full list of available calculation functions, please read What calculation functions are supported.
This article describes the formula syntax and usage of the MIN function.
Description
Returns the smallest number in a set of values.
Syntax
MIN(number1, [number2], ...)
The MIN function syntax has the following arguments:
- number1, number2, ... Number1 is required, subsequent numbers are optional. 1 to 255 numbers for which you want to find the minimum value.
Remarks
- Arguments can either be numbers or names, arrays, or references that contain numbers.
- Logical values and text representations of numbers that you type directly into the list of arguments are counted.
- If an argument is an array or reference, only numbers in that array or reference are used. Empty cells, logical values, or text in the array or reference are ignored.
- If the arguments contain no numbers, MIN returns 0.
- Arguments that are error values or text that cannot be translated into numbers cause errors.
Example
| Formula | Description | Result |
| =MIN(10, 20, 30, 40) | Smallest value in the list. | 10 |
| =MIN(30, 20, 10, -10) | Smallest value in the list. | -10 |
Errors
For a full list of formula errors, please read Formula errors.