Mean Absolute Deviation Excel Formula

If you just need to mean absolute deviation excel formula and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =AVEDEV(range) for the average absolute distance from the mean — a spread measure that, unlike standard deviation, is not inflated by outliers.

On this page8

Syntax

=AVEDEV(number1, [number2], ...) and =DEVSQ(number1, [number2], ...)

Arguments

Argumentrequired / optionalDescription
number1requiredThe first value or range.
number2, ...optionalFurther values or ranges.

Related functions

STDEVVARAVERAGE
ƒxStandard DeviationLive

n = 6 · mean = 14.67

Sample std. deviation (σ)
4.131

Variance = 17.067

=STDEV.S(A1:A6)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

AVEDEV returns the mean absolute deviation: the average of how far each value sits from the mean, ignoring direction. Because it does not square the distances, one extreme value influences it far less than it influences a standard deviation, which makes it the more honest spread measure on data with occasional wild readings. DEVSQ returns the sum of squared deviations, which is the numerator of the variance formula and appears in regression and analysis-of-variance calculations. Neither assumes a normal distribution, which standard deviation implicitly leans on. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “mean absolute deviation excel formula”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Delivery times in B2:B60 with two extreme delays: =AVEDEV(B2:B60) might return 1.4 days while =STDEV.S(B2:B60) returns 3.1, because the squaring in the standard deviation amplifies those two readings. =DEVSQ(B2:B60) divided by n-1 reproduces =VAR.S(B2:B60) exactly. AVEDEV gives a spread figure that outliers cannot inflate, which is what makes it honest on data standard deviation exaggerates. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “mean absolute deviation excel formula”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Substituting AVEDEV into formulas that expect a standard deviation, such as control limits — the two are not interchangeable.
  • Reporting it without saying which measure it is, since readers assume standard deviation by default.
  • Overlooking that DEVSQ is a sum, not an average, so it grows with the sample size.

Frequently asked questions

How is AVEDEV different from standard deviation?

It averages absolute distances rather than squared ones, so extreme values pull it far less.

When should I prefer it?

When the data has occasional wild readings and you want a spread figure they do not dominate.

What is DEVSQ for?

The sum of squared deviations — the numerator of variance, used directly in regression and ANOVA work.