AVERAGE Function

Excel Functions › Statistical

All versions Statistical

The Excel AVERAGE function returns the arithmetic mean of its arguments — the sum of the numbers divided by how many there are. It is the everyday workhorse for finding a central value.


Quick answer:
=AVERAGE(1,2,3,4,5) = 3

Syntax

=AVERAGE(number1, [number2], ...)
ArgumentDescription
number1RequiredThe first number, cell reference, or range to average.
number2, ...OptionalUp to 254 additional numbers or ranges. Mix values, cells, and ranges freely.

How to use it

AVERAGE adds every numeric argument and divides by the count of numbers. Each argument can be a value, a cell reference, or a whole range.

=AVERAGE(1,2,3,4,5) // = 3
=AVERAGE(A1:A10) // mean of a column

When you point AVERAGE at a range, text, logical values, and empty cells are skipped entirely — they are not counted as zeros. A cell containing the number 0 is counted, which is the most common reason an average comes out lower than expected.

Blanks vs zeros: an empty cell is ignored, but a cell holding 0 is included in the divisor. If you want zeros treated as blanks, filter them out with AVERAGEIF(range,"<>0").

Try it: interactive demo

Live demo

Pick a AVERAGE example to see the formula and its result.

Result:

Practice workbook

📊
Download the free AVERAGE practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Does AVERAGE count blank cells as zero?
No — empty cells in a referenced range are ignored and don't affect the result. A cell containing the number 0, however, is counted and lowers the average.
How is AVERAGE different from AVERAGEA?
AVERAGE only considers numbers. AVERAGEA also includes text (as 0) and logical values (TRUE as 1, FALSE as 0) in the count, so it can return a lower mean.
Can AVERAGE ignore zeros?
Yes, with a criteria version: =AVERAGEIF(range,"<>0") averages only the non-zero numbers.
What is the difference between mean, median, and mode?
AVERAGE gives the mean (sum ÷ count), MEDIAN gives the middle value, and MODE.SNGL gives the most frequent value. The median is more robust when outliers skew the data.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: AVERAGEIF · AVERAGEIFS · AVERAGEA · MEDIAN · SUM