AVERAGE Function in Excel: Complete Tutorial with Examples

AVERAGE calculates the mean instantly, ignores text and blanks automatically, and tracks performance trends across any dataset size.

Need to find the mean of a set of numbers? AVERAGE adds up all the values and divides by the count. It’s the foundation for analyzing trends, comparing performance, and understanding your data at a glance.

What Makes AVERAGE Useful

AVERAGE gives you the big picture fast:

  • Quick analysis – Understand typical values in seconds
  • Ignores text – Automatically skips non-numeric cells
  • Flexible ranges – Work with any number of cells or ranges
  • Performance tracking – Monitor sales, scores, or metrics over time
  • Comparison baseline – See which values are above or below average
The Syntax
=AVERAGE(number1, [number2], ...)

You can include individual cells, ranges, or mix both. AVERAGE handles up to 255 arguments.


Example 1: Basic Sales Average

Find the average daily sales:

Formula: =AVERAGE(B2:B6)

Result: $536

Add all five values and divide by 5. One formula gives you the typical daily performance.


Example 2: Multiple Ranges

Calculate average scores across two test columns:

Formula: =AVERAGE(B2:B4, C2:C4)

Result: 86.33

AVERAGE combines both ranges into one calculation. All six scores averaged together.


Example 3: Mixed Arguments

Average specific cells plus a range:

Formula: =AVERAGE(B2, B4, B5:B5)

Result: $13,966.67

Include Jan, Mar, and Apr only. Skip Feb by not referencing B3.


Example 4: Handling Text and Blanks

What happens with mixed data?

Formula: =AVERAGE(B2:B6)

Result: 48.33

AVERAGE ignores “N/A” and the blank cell. It only averages the three numeric values: 45, 62, and 38.


Example 5: Department Performance

Compare individual performance to team average:

Formula in C2: =B2-$B$2:$B$5 won’t work, but this will:

Formula: =AVERAGE($B$2:$B$5)

Result: $10,450

Use absolute references (dollar signs) when you want to copy the formula down but keep the same average range.


Example 6: Quarterly Trend Analysis

Find average sales per quarter:

Formula for 2024: =AVERAGE(B2:E2)

Result: $142.5K

Formula for 2025: =AVERAGE(B3:E3)

Result: $155.33K

The blank Q4 cell for 2025 is ignored. Average calculates based on three quarters only.


Common Mistakes to Avoid

Counting vs Averaging

  • =AVERAGE(B2:B10) finds the mean
  • =COUNT(B2:B10) counts how many numbers exist
  • These are different things

Zero vs Blank

  • Blank cells are ignored
  • Cells with 0 are included in the calculation
  • This affects your results

Text Numbers

  • Numbers stored as text (with an apostrophe or from imports) are ignored
  • Convert text to numbers first if needed
When to Use AVERAGE

Use AVERAGE when:

  • You need the typical or middle value
  • You’re tracking performance over time
  • You’re comparing against a baseline
  • You want to smooth out variations

Don’t use AVERAGE when:

  • You have extreme outliers (use MEDIAN instead)
  • You need the most common value (use MODE instead)
  • You need weighted averages (use SUMPRODUCT or AVERAGEIF)
Start Using It

Open any spreadsheet with numbers. Select a range. Type =AVERAGE and include your cells. Hit enter. That’s it.

AVERAGE becomes automatic once you start analyzing data regularly.


Questions about AVERAGE? Want to explore weighted averages or conditional averaging? Let’s connect.