AVEDEV Function

Excel Functions › Statistical

All versions Statistical

The Excel AVEDEV function returns the average of the absolute deviations of data points from their mean — a plain-spoken measure of variability that, unlike variance, keeps the original units.


Quick answer:
=AVEDEV(4,5,6,7,5,4,7) mean absolute deviation ≈ 1.06

Syntax

=AVEDEV(number1, [number2], ...)
ArgumentDescription
number1RequiredThe first number, name, array, or reference to include.
number2, ...OptionalUp to 254 additional numbers or ranges. AVEDEV needs at least one numeric value.

How to use it

AVEDEV first finds the mean of your numbers, then averages how far each value sits from that mean — using the absolute distance so positives and negatives don't cancel out.

=AVEDEV(4,5,6,7,5,4,7) // mean = 5.43, MAD ≈ 1.06
=AVEDEV(2,4,6,8) // mean = 5, MAD = 2

Because it uses absolute values rather than squares, AVEDEV is less sensitive to outliers than the standard deviation and is easy to explain to a non-technical audience: it is literally the average distance from average.

AVEDEV vs STDEV: both measure spread, but STDEV squares the deviations (penalising large gaps more heavily) and is the input for most statistical tests. Reach for AVEDEV when you want a simple, intuitive "typical distance from the mean".

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free AVEDEV 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

What does AVEDEV actually measure?
It measures the average absolute distance of each data point from the mean of the set — a measure of dispersion expressed in the same units as the data.
How is AVEDEV different from STDEV?
AVEDEV averages the absolute deviations; STDEV is based on the squared deviations. STDEV weights large gaps more heavily and feeds most statistical formulas, while AVEDEV is simpler to interpret.
Does AVEDEV ignore text and blank cells?
Inside a referenced range, text, logical values, and empty cells are ignored — only numbers are used to compute the mean and the deviations.
Why can't I just average the raw deviations?
The raw deviations from the mean always sum to zero, so their average is zero for every dataset. Taking absolute values first is what makes the measure meaningful.

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: AVERAGE · STDEV.S · DEVSQ · MEDIAN · VAR.S