
Find the largest number in a list. Useful for spotting the highest sale, top score, or latest date.
MAX returns the largest number in a set of values. It is one of the quickest ways to answer a simple question in Excel: what is the highest number here?
That sounds basic, but it is useful in a lot of real sheets. You can use it to find the top sales day, the biggest expense, the highest score, the warmest temperature, or even the latest date because Excel stores dates as numbers too.
Returns the highest numeric value from the values you give it.
Returns the maximum value. If there are no numbers at all, Excel returns 0.
=MAX(number1, [number2], ...)
You can use a range like A1:A10, list separate cells, or type numbers directly into the formula. Excel allows up to 255 arguments.
| Function | What it returns | Use it when |
|---|---|---|
MAX |
The highest value | You want the top number in the full list |
MAXIFS |
The highest matching value | You want the top value only for rows that meet criteria |
LARGE |
The nth largest value | You want the second, third, or any ranked high value |
MIN |
The lowest value | You want the opposite end of the range |
MAX is useful because it keeps the answer focused. When you need the top result, there is no need to sort the whole table or scan it by eye. One formula can return the highest number right away, and it updates automatically if the data changes.
Microsoft points out an important detail here. If you type logical values or text versions of numbers directly into the argument list, Excel counts them. But if those values are inside a range or reference, MAX only uses the numeric entries and ignores text, logical values, and empty cells. If you want logical values and text numbers in references to count too, use MAXA instead.
Another small detail that is easy to forget is that MAX can work with dates. Since Excel stores dates as serial numbers, the latest date in a range is also the maximum date in that range. That makes MAX useful beyond sales and scores.
This is the usual pattern. You point MAX at a block of numbers and let Excel return the top one.
=MAX(B1:B5) // Returns the highest value in the range.
Find the largest sales number in cells B1 to B5. Formula: =MAX(B1:B5).
MAX also works for quick manual comparisons when you do not want to place every value in cells first.
=MAX(10,50,20) // Returns 50.
Find the largest number in the set 10, 50, and 20. Formula: =MAX(10,50,20).
In a score table, MAX gives you the top result immediately, which is useful for dashboards and simple summaries.
=MAX(B1:B10) // Returns the highest score in the range.
Find the highest numeric value in B1:B10. Formula: =MAX(B1:B10).
The same idea works for production totals, response times, temperatures, prices, or dates.
=MAX(B1:B10) // Returns the largest value in the range.
Find the highest score in B1:B10. Formula: =MAX(B1:B10).
0.MAXA if you need logical values and text numbers in references included.Tell your friends about this post