MIN
Find the smallest number in a range or list of values with Excel's MIN function.
Spreadsheet editor
Spreadsheet editor
Syntax
=MIN(number1, [number2, ...])
Returns: Number Arguments
| Argument | Required | Description |
|---|---|---|
| number1 | Yes | The first number, cell reference, or range you want to find the minimum of. |
| number2 | No | Additional numbers or ranges to include. You can add up to 255 arguments in total. |
About
Use MIN whenever you need the bottom of a set: the lowest price in a quote list, the earliest date in a schedule, the smallest order in a month, or the fastest finish time in a race. Because dates and times are stored as numbers, MIN works on them too, so =MIN(B2:B20) finds the earliest date in a column just as easily as the smallest dollar amount.
When scanning a range, MIN ignores empty cells, text, and logical values, so it only compares real numbers. If you need the smallest value that meets a condition, use MINIFS, and to find the smallest number above zero or the second smallest, look at SMALL.
Exercises using MIN
Find the minimum value
BeginnerFind the lowest expense in a budget line items list.
Open exerciseMinmaxing
BeginnerOpen exercise
Complex commission structure
AdvancedCalculate commissions with tiered rates, team bonuses, and caps.
Open exerciseTax calculation with brackets
AdvancedCalculate income tax using progressive tax brackets.
Open exerciseExamples
Text and blanks are skipped
Spreadsheet editor
Empty range returns 0
Spreadsheet editor
Cap a value with MIN
Spreadsheet editor
Watch out for
Text numbers in a range are skipped
Numbers stored as text (like "150" with a leading apostrophe) are ignored when they sit inside a range, so MIN can return a value you did not expect.
→ Convert text to real numbers first, for example with VALUE, or use Excel's Text to Columns to clean the column before running MIN.
You need the smallest value, not the smallest match
Plain MIN looks at every number in the range. It cannot filter to a category, region, or other condition on its own.
→ Use MINIFS to find the smallest value that meets one or more conditions, such as the lowest price for a single product.