Excel AVERAGE Function

The AVERAGE function in Microsoft Excel calculates the arithmetic mean of a range of numerical values. It is widely used for analyzing datasets, such as finding average sales, scores, or other metrics.

Key Topics

Overview of AVERAGE Function

The AVERAGE function sums all numerical values in a range and divides by the count of those values, ignoring text, blank cells, or errors. It is ideal for summarizing data trends.

AVERAGE Function Syntax

The syntax for the AVERAGE function is as follows:

Syntax: =AVERAGE(number1, [number2], ...)

Parameters:

  • number1: The first number or range to average (required).
  • number2, ...: Additional numbers or ranges to average (optional).

Implementation Examples

Below are examples of how to use the AVERAGE function in different scenarios.

Example 1: =AVERAGE(B2:B6) — Calculates the average of values in B2 through B6.

Example 2: =AVERAGE(B2, B3, B4) — Averages specific cells B2, B3, and B4.

Example 3: =AVERAGE(B2:B6, C2:C6) — Averages values across two ranges.

Sample Dataset (Excel-style View)

Below is a demo dataset styled like Excel, showing how the AVERAGE function can be used to calculate average sales.

A B C
1 Region Sales Q1 Sales Q2
2 North 12000 15000
3 South 8000 9000
4 East 10000 11000
5 West 15000 17000
6 Central 9000 10000
7 Average =AVERAGE(B2:B6) =AVERAGE(C2:C6)

Note: In the dataset, cell B7 uses =AVERAGE(B2:B6) to calculate the average sales for Q1, and cell C7 uses =AVERAGE(C2:C6) for Q2. AVERAGE ignores blank cells and text.

Key Takeaways

  • The AVERAGE function calculates the mean of numerical values in a range.
  • It ignores text, blank cells, and errors, focusing only on numbers.
  • It supports multiple ranges, e.g., =AVERAGE(B2:B6, C2:C6).
  • Common uses include calculating average sales, test scores, or other metrics.
  • The sample dataset shows AVERAGE applied to regional sales data for two quarters.