< Back

AVERAGEA function

Tue Jul 09, 2019 6:28 am

AVERAGEA function



This article describes the formula syntax and usage of the AVERAGEA function in Microsoft Excel.



Description Calculates the average (arithmetic mean) of the values in the list of arguments.



Syntax AVERAGEA(value1, [value2], ...) The AVERAGEA function syntax has the following arguments:
  • Value1, value2, ... Value1 is required, subsequent values are optional. 1 to 255 cells, ranges of cells, or values for which you want the average.




AVERAGEA is different from the AVERAGE function, as it evaluates the logical values TRUE and FALSE, and numbers represented as text, whereas AVERAGE just skips these values during calculation.



Remarks
  • Arguments can be the following: numbers; names, arrays, or references that contain numbers; text representations of numbers; or logical values, such as TRUE and FALSE, in a reference.
  • Logical values and text representations of numbers that you type directly into the list of arguments are counted.
  • Arguments that contain TRUE evaluate as 1; arguments that contain FALSE evaluate as 0 (zero).
  • Array or reference arguments that contain text evaluate as 0 (zero). Empty text ("") evaluates as 0 (zero).
  • If an argument is an array or reference, only values in that array or reference are used. Empty cells and text values in the array or reference are ignored.
  • Arguments that are error values or text that cannot be translated into numbers cause errors.


If you do not want to include logical values and text representations of numbers in a reference as part of the calculation, use the AVERAGE function.



Note: The AVERAGEA function measures central tendency, which is the location of the center of a group of numbers in a statistical distribution. The three most common measures of central tendency are:
  • Average which is the arithmetic mean, and is calculated by adding a group of numbers and then dividing by the count of those numbers. For example, the average of 2, 3, 3, 5, 7, and 10 is 30 divided by 6, which is 5.







    The mathematical Mean is the same as the Average function. The formula is



    Image



    Where :

    x?? - Mean or Average of the numbers.

    n - is the sample size of Number of elements.

    x - The value of each element or number in the data set.



    To find the mean(average) of 5 numbers this would expand as below:



    Image
  • Median which is the middle number of a group of numbers; that is, half the numbers have values that are greater than the median, and half the numbers have values that are less than the median. For example, the median of 2, 3, 3, 5, 7, and 10 is 4.
  • Mode which is the most frequently occurring number in a group of numbers. For example, the mode of 2, 3, 3, 5, 7, and 10 is 3.
For a symmetrical distribution of a group of numbers, these three measures of central tendency are all the same. For a skewed distribution of a group of numbers, they can be different.

Tip: When you average cells, keep in mind the difference between empty cells and those containing the value zero, especially if you have cleared the Show a zero in cells that have a zero value check box in the Excel Options dialog box in the Excel desktop application. When this option is selected, empty cells are not counted, but zero values are.



To locate the Show a zero in cells that have a zero value check box:
  • On the File tab, click Options, and then, in the Advanced category, look under Display options for this worksheet.
Example Copy the example data in the following table, and paste it in cell A1 of a new Excel worksheet. For formulas to show results, select them, press F2, and then press Enter. If you need to, you can adjust the column widths to see all the data.


Data


10


7


12


TRUE


Not available


Formula


Description


Result


=AVERAGEA(A2:A6)


Average of the numbers above, and the text "Not Available". The cell with the text "Not available" is used in the calculation.


6


=AVERAGEA(A2:A5,A7)


Average of the numbers above, and the empty cell.


6