0Pricing
Excel Formulas Academy · Lesson

Finding the Mean With AVERAGE

Calculate the average of a range with the AVERAGE function.

Finding the Mean With AVERAGE is a free Excel Formulas Academy lesson on CoddyKit — lesson 2 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Excel Formulas Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

What Is an Average?

An average (also called the mean) tells you the typical value in a group of numbers. You add the numbers up and divide by how many there are.

For example, test scores of 80, 90, and 100 add up to 270. Divide by 3 and the average is 90.

You could do this by hand, but the AVERAGE function does both steps for you in one short formula.

The AVERAGE Syntax

AVERAGE follows the same shape as SUM:

=AVERAGE(range)

Point it at a range of cells and it returns the mean of the numbers inside. It quietly handles the adding and the dividing.

Just like SUM, it skips text and blank cells, so only real numbers are counted.

=AVERAGE(A1:A10)

A Worked Example

Suppose cells C2 through C4 hold three test scores:

  • C2 = 80
  • C3 = 90
  • C4 = 100

The formula =AVERAGE(C2:C4) returns 90. Behind the scenes it added 80 + 90 + 100 to get 270, then divided by 3.

If you change C4 to 70, the average recalculates to about 80 right away.

=AVERAGE(C2:C4)

AVERAGE Is SUM Divided by COUNT

Under the hood, AVERAGE is really two functions combined:

=SUM(range)/COUNT(range)

SUM totals the numbers and COUNT counts how many numbers there are. AVERAGE does both for you in one step.

Knowing this helps you understand why blank cells matter: they are not counted, so they do not pull the average down.

=SUM(C2:C4)/COUNT(C2:C4)

Blank Cells vs Zeros

Here is a key detail: a blank cell and a zero are treated differently.

  • A blank cell is ignored entirely, as if it is not there.
  • A zero is a real number and gets included in the count.

So 80, 90, and a blank average to 85, but 80, 90, and 0 average to about 56.7. Decide whether missing values should be blanks or zeros before you build your formula.

=AVERAGE(D2:D4)

Averaging a Whole Column

As with SUM, you can average an entire column for a growing list:

=AVERAGE(E:E)

This finds the mean of every number in column E, including rows you fill in later. Headers and blank rows are ignored automatically.

Place this formula outside column E to avoid a circular reference.

=AVERAGE(E:E)

A Larger Worked Example

A class of six students scored 72, 88, 95, 60, 100, and 85, stored in F2 through F7.

The formula =AVERAGE(F2:F7) returns 83.33. That single number tells the teacher the class's typical performance at a glance.

If a seventh student is added in F8, simply extend the range to =AVERAGE(F2:F8) and the mean updates.

=AVERAGE(F2:F7)

Averaging a Row

AVERAGE works across rows too. If a row holds monthly sales from B2 to M2, find the monthly average like this:

=AVERAGE(B2:M2)

This adds the twelve values and divides by twelve, giving the typical month's figure.

The colon range works in any straight line, so rows and columns are both fair game.

=AVERAGE(B2:M2)

When the Mean Can Mislead

The average is useful, but one extreme value can distort it. If salaries are 30, 32, 31, and 200 (thousands), the average jumps to about 73, even though most people earn around 31.

That single large number is called an outlier. When data has outliers, the average may not reflect the typical case well.

Later you will meet MEDIAN, which is more resistant to outliers, but for everyday balanced data AVERAGE is perfect.

=AVERAGE(A2:A5)

Same in Excel and Sheets

AVERAGE works identically in Microsoft Excel and Google Sheets. The syntax =AVERAGE(range) is the same in both programs.

You can build a sheet in one and open it in the other without changing the formula.

Like SUM, AVERAGE is a core function that you will reach for constantly, so it is worth getting comfortable with now.

=AVERAGE(A2:A20)

Common AVERAGE Mistakes

Two pitfalls to avoid:

  • Including a total cell. If your range accidentally covers the SUM total at the bottom, the average will be wildly wrong.
  • Mixing zeros and blanks unintentionally. Remember zeros count but blanks do not, which changes the result.

Double-check exactly which cells your range covers before pressing Enter.

=AVERAGE(C2:C4)

Quick Check

Test your understanding of the AVERAGE function.

Recap: AVERAGE

You learned to find the mean of a range:

  • Use =AVERAGE(range), for example =AVERAGE(C2:C4).
  • It equals SUM(range)/COUNT(range) done in one step.
  • Blank cells are ignored, but zeros are counted.
  • Watch out for outliers, which can pull the mean away from the typical value.

Next, you will combine separate ranges and single cells inside one SUM formula.

=AVERAGE(C2:C4)

Frequently asked questions

Is the “Finding the Mean With AVERAGE” lesson free?

Yes — the full text of “Finding the Mean With AVERAGE” is free to read here on the web, and the Excel Formulas Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Excel Formulas Academy course, upgrade to CoddyKit PRO.

What will I learn in “Finding the Mean With AVERAGE”?

Calculate the average of a range with the AVERAGE function. You practise Excel Formulas Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Excel Formulas Academy?

No prior experience is required. Excel Formulas Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Finding the Mean With AVERAGE” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Excel Formulas Academy lesson?

Yes. Every Excel Formulas Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Totaling Numbers With SUM
  2. Finding the Mean With AVERAGE
  3. Mixing Ranges and Single Cells in SUM
  4. AutoSum and Quick Calculations
← Back to Excel Formulas Academy