The MAXA function in Google Sheets is a useful tool to find the maximum numeric value in a dataset. Whether you're analyzing sales data, tracking stock prices, or calculating exam scores, the MAXA function simplifies the task. Follow our comprehensive guide to master its application.
Parameters
value1: The first value or range to consider for the maximum.value2: Additional numbers or ranges to consider.
Step-by-Step Tutorial
-
Using
MAXAwith individual numbers:- Example:
=MAXA(10, 5, 12) - Result:
12
- Example:
-
Using
MAXAwith a range of cells:- Example: If
A1:A5has the values5, 10, 3, 8, 7, then=MAXA(A1:A5)will return10.
- Example: If
Use Cases and Scenarios
- Sales Analysis: Identify the product with the highest sales figure.
- Stock Market Analysis: Find the maximum stock price for a given period.
- Grading System: Determine the highest score in a class.
Related Functions
MIN: Find the smallest value in a set.MINA: LikeMAXA, but it evaluates text and other data types as well.