AVERAGE
The AVERAGE
function in Google Sheets calculates the numerical average value in a dataset, ignoring text. This function is useful for various calculations such as finding the average score, average monthly sales, or average expenses. Learn how to use the AVERAGE
function effectively with our comprehensive guide.
Function Syntax and Parameters
Syntax: AVERAGE(value1, [value2, ...])
Parameters:
value1
: The first value or range to include in the average calculation.value2, ...
: [Optional] Additional values or ranges to include.
Step-by-Step Tutorial
-
Using
AVERAGE
with individual numbers:- Example:
=AVERAGE(3, 10, 5)
- Result:
6
- Example:
-
Using
AVERAGE
with a range of cells:- Example: If
A1:A5
has the values5, 10, 3, 8, 7
, then=AVERAGE(A1:A5)
will return6.6
.
- Example: If
Use Cases and Scenarios
- Grades Calculation: Calculate the average score of a student across different subjects.
- Sales Analysis: Determine the average sales per month or per product category.
- Expense Management: Find the average monthly expenses for budget planning.