
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.
MAX is useful whenever the workbook needs the upper edge of a set. It quickly identifies the highest value, which makes it practical in scoreboards, threshold checks, pricing analysis, and any model where the peak result matters.
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.
This is a useful starting example because it shows the main job of MAX very directly: find the single largest value without sorting the whole list.
=MAX(B1:B5) // Returns the highest value in the range.
Find the highest sales value in the first range.
MAX also works for quick manual comparisons when you do not want to place every value in cells first.
This helps show that the function is useful even outside a worksheet range. You can still use it as a quick comparison tool for a few values.
=MAX(10,50,20) // Returns 50.
Find the largest number in the typed list.
In a score table, MAX gives you the top result immediately, which is useful for dashboards and simple summaries.
This is practical because the formula answers a common reporting question fast: what is the best result in the list right now?
=MAX(B1:B10) // Returns the highest score in the range.
Find the highest numeric value in the larger range.
The same idea works for production totals, response times, temperatures, prices, or dates.
This helps the learner see that MAX is not tied to one kind of data. Any situation with a “highest value” question can use the same pattern.
=MAX(B1:B10) // Returns the largest value in the range.
Find the top score in the team list.
MAX is the quick answer when your real question is simply "which value is the highest?" In this lesson, that could be the biggest sale, top score, highest price, or even the latest date.
You can point it at a range, compare separate cells, or type values directly. As long as Excel can see the numbers, MAX pulls out the top one without needing any sorting.
0.MAXA if you need logical values and text numbers in references included.Tell your friends about this post