Mean vs Median vs Mode

Excel Formulas › Statistics

All versionsAVERAGE

Three “averages,” three meanings: the mean (arithmetic average), the median (middle value), and the mode (most common). Knowing which to report — especially for skewed data — matters.


Quick formula: all three for B2:B100:
=AVERAGE(B2:B100) =MEDIAN(B2:B100) =MODE(B2:B100)
The mean is pulled by outliers; the median isn’t; the mode is the most frequent value.

Functions used (tap for the full reference guide):

The example

Three measures of center.

AB
1MeasureValue
2Mean34 (pulled high)
3Median25
4Mode20

The formula

The formula:

=AVERAGE(rng) | =MEDIAN(rng) | =MODE(rng) // three centers

How it works

How it works:

  1. Mean (AVERAGE) sums and divides — great for symmetric data, but pulled by outliers.
  2. Median (MEDIAN) is the middle value — resistant to outliers, the honest “typical” for skewed data like income.
  3. Mode (MODE) is the most frequent value — useful for categories and discrete data.
  4. When mean and median diverge, the data is skewed — report the median.

Which to report? Symmetric data → mean. Skewed data (salaries, home prices) → median. Categorical or “most common” questions → mode. Showing all three is often the most honest summary.

Try it: interactive demo

Live demo

Values.

Mean · Median · Mode

Variations

Mode for text

Most common label (array):

=INDEX(rng, MATCH(MAX(COUNTIF(rng,rng)), COUNTIF(rng,rng), 0))

Trimmed mean

Mean minus extremes:

=TRIMMEAN(rng, 0.2)

Skew check

Mean − median:

=AVERAGE(rng) - MEDIAN(rng)

Pitfalls & errors

Mean is outlier-sensitive. One big value drags it — don’t report the mean for skewed data.

MODE errors with no repeats. Returns #N/A if every value is unique.

Pick by data type. Mode suits categories; mean/median suit continuous numbers.

Practice workbook

📊
Download the free Mean vs Median vs Mode practice workbook
A three-averages sheet with the text-mode, trimmed-mean, and skew variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

What's the difference between mean, median, and mode in Excel?
Mean (AVERAGE) is the arithmetic average; median (MEDIAN) is the middle value; mode (MODE) is the most frequent. Use median for skewed data and mode for categories.
When should I use the median instead of the mean?
For skewed data (incomes, prices) where outliers pull the mean. The median better reflects the typical value.
How do I tell if data is skewed?
Compare the mean and median: a large difference (=AVERAGE-MEDIAN) signals skew toward the longer tail.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Mode (most frequent) · Median by group · Trimmed mean

Function references: AVERAGE · MEDIAN · MODE