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
Arguments
| Argument | required / optional | Description |
|---|---|---|
number1 | required | The first value or range. |
number2, ... | optional | Further values or ranges. |
Related functions
n = 6 · mean = 14.67
Variance = 17.067
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
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. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “calculate mean absolute deviation in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. 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. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
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. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Treat “calculate mean absolute deviation in excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.
Common mistakes
- Substituting
AVEDEVinto 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
DEVSQis 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.
Other ways people ask this
People reach this page typing “calculate mean absolute deviation in excel”, “how to calculate median absolute deviation in excel” and “how to find mean absolute deviation in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.
Why do people search for this in so many different ways?
Because the same task has many names. “calculate mean absolute deviation in excel”, “how to calculate median absolute deviation in excel”, “how to find mean absolute deviation in excel” all point at the one operation explained on this page, which is why they all lead here.