AVERAGEA (arithmetic mean)

Navigation:  Formulas and functions > Functions from A to Z >

AVERAGEA (arithmetic mean)

Previous pageReturn to chapter overviewNext page

Syntax:

AVERAGEA(Value1 [, Value2, Value3 ...])

Description:

The AVERAGEA function is almost identical to the AVERAGE function (see note). It returns the arithmetic mean of the given values.

Number1, Number2, etc., are single values, cell ranges, or arrays containing the values to be evaluated.

Note:

Unlike the AVERAGE function, AVERAGEA also evaluates logical values and text. Both FALSE and text are evaluated as 0. TRUE is evaluated as 1.

Empty cells, however, are also ignored here.

Example:

AVERAGEA(1, 2, 6) equals (1+2+6) / 3, which is 3.

If the cells A1:A4 contain the values 0, 1, 4 and TRUE:

AVERAGEA(A1:A4) equals (0+1+4+1) / 4, which is 1.5. The logical value TRUE is interpreted as 1 here.

For comparison:

AVERAGE(A1:A4) equals (0+1+4) / 3, thus returns 1.66667. The logical value is ignored here.

See also:

AVERAGE