← Back to level 1
Level 1Next
MAX
A easy comparison formula for finding the highest value in a range, such as the best score or top price.
Syntax
=MAX(...)Step-by-step explanation
- 1Choose the numeric range where you want the highest or lowest value.
- 2Enter MAX in a blank cell and select the full range.
- 3Press Enter to check that Excel returns the largest value.
Common mistakes
Including non-numeric cells in the range
Using MIN by accident
Selecting the wrong column
Example table
A quick scenario to connect the syntax to the result.
| 12 | 18 |
| 8 | 42 |
Formula
=MAX(A1:B2)
Result
42
Worked example
- 1Read the sample data first so you know what the formula needs to solve.
- 2Enter =MAX(A1:B2) in the result cell and press Enter.
- 3Check that the output matches 42.
Practice area
Use MAX when you need the largest value from a list of marks, sales, or expenses.
Match against the syntax block above.