
Calculate the arithmetic mean of numbers in Excel. A simple way to see the typical value in a list.
AVERAGE returns the arithmetic mean of a set of numbers. It adds the numbers together and divides the total by how many numeric values are included, so you get one result that represents the group.
This is one of the most useful summary functions in Excel because it helps you turn a long list into something easy to read. If you want the typical sales amount, the usual score, or the general level of a metric, AVERAGE is often the first place to start.
Combines a set of numbers into one typical value.
Returns the arithmetic mean. If no numbers are available to average, Excel returns #DIV/0!.
=AVERAGE(number1, [number2], ...)
You can use one range, several cells, typed numbers, or a mix of them. Excel allows up to 255 arguments in the function.
AVERAGE is the standard choice when you want the mean, but it is not the only way to summarize the center of a list.
| Function | What it returns | Use it when |
|---|---|---|
AVERAGE |
The arithmetic mean | You want the standard average of numeric values |
AVERAGEA |
An average that can include logical values and text in references | You need Excel to treat values like TRUE and FALSE as part of the calculation |
MEDIAN |
The middle value | You want a result that is less affected by very high or very low outliers |
MODE.SNGL |
The most frequent value | You want to know what appears most often |
AVERAGE works best when you want a clean summary of numeric data. In a sales sheet, it can show the usual daily revenue. In a grade sheet, it can show a student's overall result. In a dashboard, it helps reduce a long column of numbers into one quick reading.
There are a few rules worth knowing because they affect the result. Microsoft notes that numbers in references are counted, empty cells are ignored, and cells containing zero are included. If a referenced range contains text or logical values, those are ignored by AVERAGE. If you type a logical value or text form of a number directly into the argument list, AVERAGE still does not count it. If you need those kinds of values included, AVERAGEA is the better fit.
A1:A10 when your data is already in cells.=AVERAGE(10,20,30).This is the usual pattern. You select a block of numeric cells and let Excel calculate the mean.
=AVERAGE(B1:B5) // Returns the average of the values in B1 through B5.
Find the average of the sales numbers in cells B1 to B5. Formula: =AVERAGE(B1:B5).
You do not need a range for every case. AVERAGE also works with numbers typed directly into the formula.
=AVERAGE(10,20,30) // Returns 20.
Calculate the average of 10, 20, and 30. Formula: =AVERAGE(10,20,30).
This is useful for quick what-if checks. You can average existing data and add another value without changing the worksheet itself.
=AVERAGE(B1:B5,100) // Adds 100 into the average with the range.
Find the average of the cells B1:B5 plus the number 100. Formula: =AVERAGE(B1:B5,100).
When you expand the range, the result reflects more of the full dataset instead of just a small sample.
=AVERAGE(B1:B10) // Returns the average for the full range.
Take the average of the full range B1:B10. Formula: =AVERAGE(B1:B10).
#DIV/0!.AVERAGEA if you need logical values or text numbers in references included.Tell your friends about this post