
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.
AVERAGE is useful because many worksheet questions are not about totals but about the typical value in a set. It gives the workbook a quick center point for performance, pricing, measurement, and many other data summaries where the mean matters more than the sum.
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 standard way most people use AVERAGE. You point to a block of numeric cells, and Excel adds them together and divides by how many numbers are in the range.
The result gives you one typical value for the group. In a sales example, that can help you describe what a normal month looks like instead of reading each month one by one.
=AVERAGE(B1:B5) // Returns the average of the values in B1 through B5.
Find the average of the sales numbers in the first range.
You do not need worksheet cells for every quick check. This example shows that you can type the numbers directly into the formula when you only need a simple one-off calculation.
That makes it useful for learning, quick testing, or checking a small set of values before you build a full table.
=AVERAGE(10,20,30) // Returns 20.
Calculate the average of the typed values.
This example is useful for a quick what-if question. You can keep the existing range as it is, then add one extra number to see how that new value would affect the overall average.
That matters because the extra number becomes part of both the total and the count. It is a small example, but it shows how easy it is to test a scenario without changing the source data.
=AVERAGE(B1:B5,100) // Adds 100 into the average with the range.
Average the range together with one extra value.
When the range gets larger, the result represents more of the full dataset instead of just a small sample. That usually makes the average more useful for summaries and reporting.
This is a good reminder that the size of the range changes the meaning of the result. A small range may describe one short period, while a larger range may describe the broader trend.
=AVERAGE(B1:B10) // Returns the average for the full range.
Take the average of the larger score range.
AVERAGE is the basic function to use when you want one number that represents a group of numbers. In this lesson, that included normal cell ranges, typed values, and even a mix of both in one formula.
The main thing to remember is simple: Excel adds the numeric values, divides by how many numbers are included, and ignores blank cells and text in ranges. That makes AVERAGE a good starting point when you want a quick summary of sales, scores, or any other numeric list.
#DIV/0!.AVERAGEA if you need logical values or text numbers in references included.Tell your friends about this post