← All comparisons

AVERAGE vs MEDIAN: which 'typical value' to trust

Both answer 'what's the typical value?', but differently: AVERAGE (the mean) adds everything up and divides, so a few extreme values drag it around; MEDIAN is the middle value once sorted, so it barely moves when an outlier appears. On skewed data — salaries, house prices, response times — they can tell very different stories.

The differences at a glance

AVERAGEMEDIAN
How it's computedSum ÷ countMiddle value when sorted (average of the two middle values if the count is even)
Sensitivity to outliersHigh — one huge value shifts it a lotLow — extreme values barely affect it
Best forRoughly symmetric data with no wild extremesSkewed data (income, prices, durations)
Empty cells & textIgnored (use AVERAGEA to count text as 0)Ignored
ZerosCounted as valuesCounted as values
CompatibilityUniversalUniversal — identical in every Excel, Sheets & LibreOffice version we test

Which should you use?

Compatibility (from executed tests)

Both execute identically across every version of all three apps we test. Two things to know: neither has a built-in *IF variant except AVERAGEIF/AVERAGEIFS (there is no MEDIANIF — use MEDIAN(IF(range=criteria,values)) array-entered), and when the mean and median diverge sharply that gap is itself the signal your data is skewed — report both.

Example formulas

AVERAGE — the mean=AVERAGE(B2:B100)
MEDIAN — the middle value=MEDIAN(B2:B100)
Conditional median (array-entered)=MEDIAN(IF(A2:A100="East",B2:B100))

Full per-version details on each function page: AVERAGE · MEDIAN.

See also: MAX vs LARGE · Find the most frequent number.