
Find the smallest number in a list. Useful for spotting the lowest price, smallest score, or earliest value in a set.
MIN returns the smallest number in a set of values. It is the opposite of MAX, so instead of finding the highest number, it finds the lowest one.
That makes it useful for price checks, minimum scores, lowest temperatures, shortest times, and earliest numeric results. When you need the floor of a dataset, MIN gives you that answer right away.
Returns the lowest numeric value from the values you give it.
Returns the minimum value. If Excel finds no numbers at all, the result is 0.
=MIN(number1, [number2], ...)
You can use one range, separate cell references, arrays, or typed values directly in the formula.
| Function | What it returns | Use it when |
|---|---|---|
MIN |
The lowest value | You want the smallest number in the full list |
MINIFS |
The lowest matching value | You want the minimum only for rows that meet criteria |
SMALL |
The nth smallest value | You need the second, third, or any ranked low value |
MAX |
The highest value | You want the opposite end of the range |
MIN is useful when the low end matters more than the average. A buyer might use it to find the cheapest supplier quote. A teacher might use it to see the lowest score in a class. A team lead might use it to spot the shortest response time or the smallest daily output.
Microsoft notes the same kind of detail that shows up in MAX. If you type logical values or text versions of numbers directly into the argument list, Excel counts them. But if those values appear inside a range or reference, MIN only uses the numeric entries and ignores text, logical values, and blank cells. If you need logical values and text numbers in references counted too, MINA is the better choice.
MIN can also work with dates because Excel stores dates as numbers. In a list of valid dates, MIN returns the earliest one.
This is the usual pattern. Excel scans the range and returns the smallest value.
=MIN(B1:B5) // Returns the lowest value in the range.
Find the smallest value in cells B1 to B5. Formula: =MIN(B1:B5).
You can also use MIN for quick comparisons when the values are typed straight into the formula.
=MIN(100,50,75) // Returns 50.
Find the smallest number in the set 100, 50, and 75. Formula: =MIN(100,50,75).
This works well for prices, scores, times, temperatures, and many other numeric lists.
=MIN(B1:B10) // Returns the smallest value in the range.
Find the lowest numeric value in B1:B10. Formula: =MIN(B1:B10).
If you want to know the weakest result, lowest reading, or cheapest figure in a list, MIN gives you that floor fast.
=MIN(B1:B10) // Returns the lowest score in the range.
Find the smallest score in B1:B10. Formula: =MIN(B1:B10).
0.MINA if you need logical values and text numbers in references included.Tell your friends about this post