๐ง Want to find the largest number automatically in your sheet? Use the MAX function!
When working with numerical data in Google Sheets, one common question arises:
โWhat is the highest value in this list?โ
While functions like AVERAGE or SUM are commonly used, the MAX function gives you a direct way to get the top number โ instantly.
In this post, weโll walk through how to use the MAX function for real-world tasks like score comparisons, top sales tracking, and dynamic dashboards.
Even if you’re a beginner, you’ll find it easy to follow with clear, practical examples.
๐ What is the MAX function?
The MAX function returns the largest number in a given set of values.
Just give it a range, and it tells you which value is the highest.
Basic syntax:
=MAX(value1, [value2, …])
โข value1, value2…: numbers, cell references, or ranges
โข Text and blank cells are ignored
โข Logical values like TRUE/FALSE are excluded
๐ Example โ โ Find the highest score in a test
| Name | Korean | Math |
|---|---|---|
| Chulsoo | 88 | 95 |
| Younghee | 92 | 90 |
| Minsu | 85 | 98 |
Formula: =MAX(B2:B4)
โ
Result: 92
๐ Younghee scored the highest in Korean.
๐ Example โก โ Find the best monthly sales record
| Month | Sales |
|---|---|
| Jan | 1,250,000 |
| Feb | 980,000 |
| Mar | 1,520,000 |
Formula: =MAX(B2:B4)
โ
Result: 1,520,000
๐ March had the highest sales.
๐ Example โข โ Find the top-performing salesperson
| Name | Units Sold |
|---|---|
| Jinu | 42 |
| Sujin | 55 |
| Daehyun | 49 |
Formula: =MAX(B2:B4)
โ
Result: 55
๐ Sujin achieved the top sales performance.
๐ Example โฃ โ Use a dynamic range to track future values
| Product | Stock |
|---|---|
| Item A | 22 |
| Item B | 17 |
| Item C | 26 |
| Item D | (blank) |
Formula: =MAX(B2:B100)
โ
Result: 26
๐ Empty cells are ignored; using a large range allows for future updates.
โ Practical QA Checklist (Random 6 Items)
โข Does MAX ignore empty or text cells?
โข Can MAX handle multiple ranges?
โข How do I find the highest number under a condition?
โข Can I combine MAX with IF for conditional logic?
โข Does merged data affect MAX?
โข How can I keep MAX updated when new data is added?
๐ Final Thoughts
The MAX function makes it easy to identify top-performing values in your spreadsheet,
whether it’s for tracking metrics, identifying outliers, or setting goals.
With just one line of formula, you can automate decision-making processes like leaderboards, bonuses, or alerts.






