MAX Function

MAX Function

MAX Function

Find the largest number in a list. Useful for spotting the highest sale, top score, or latest date.

ExcelClash Team
PUBLISHED

Summary

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.

Purpose

Find the largest number

Returns the highest numeric value from the values you give it.

Return Value

Number

Returns the maximum value. If there are no numbers at all, Excel returns 0.

Syntax

=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.

Arguments

  • number1 - [required] The first number, cell reference, range, or array to check.
  • number2, ... - [optional] More numbers, references, ranges, or arrays to include.

MAX vs Other Functions

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

Using the MAX Function

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.

Example 1 - Find the highest sale in a range

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.
Check Answer
Challenge #1
Target: Sheet1!F1
Basic Top Sale

Find the largest sales number in cells B1 to B5. Formula: =MAX(B1:B5).

Example 2 - Compare numbers typed directly in the formula

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.
Check Answer
Challenge #2
Target: Sheet1!F2
Checking Manual Numbers

Find the largest number in the set 10, 50, and 20. Formula: =MAX(10,50,20).

Example 3 - Pull the highest score from a list

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.
Check Answer
Challenge #3
Target: Sheet1!F3
Highest Value in a Range

Find the highest numeric value in B1:B10. Formula: =MAX(B1:B10).

Example 4 - Track the peak number in a larger set

The same idea works for production totals, response times, temperatures, prices, or dates.

=MAX(B1:B10) // Returns the largest value in the range.
Check Answer
Challenge #4
Target: Sheet1!F4
Top Team Score

Find the highest score in B1:B10. Formula: =MAX(B1:B10).

Conclusion Recap

  • Main job: MAX returns the largest number in a list.
  • Flexible input: You can use ranges, separate references, arrays, or typed values.
  • Reference behavior: In ranges, text, logical values, and blanks are ignored.
  • No numeric values: If Excel finds no numbers, MAX returns 0.
  • Dates work too: The latest date in a range is also the maximum date.
  • Related option: Use MAXA if you need logical values and text numbers in references included.
Tactical Arena
Select Scenario:
Share MAX Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.