How to Find Kurtosis in Excel

If you just need to find kurtosis in excel 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 =SKEW(range) to measure asymmetry — positive means a long right tail — and =KURT(range) to measure how heavy the tails are.

Syntax

=SKEW(number1, [number2], ...) and =KURT(number1, [number2], ...)

Arguments

ArgumentDescription
number1requiredThe first value or range. At least three values are needed for SKEW, four for KURT.
number2, ...optionalFurther values or ranges.

Related functions

MEDIANAVERAGESTDEV
ƒxAverage, Median & ModeLive

n = 7 · Sum = 103.00 · Min = 9.00 · Max = 21.00

Average (mean)
14.71

7 values

Median
15.00
Mode
15.00
=AVERAGE(A1:A7) · =MEDIAN() · =MODE.SNGL()
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

SKEW measures how lopsided a distribution is. Zero means symmetric, positive means a long right tail (a few very large values, typical of income and response times), negative means a long left tail. KURT measures tail weight relative to a normal distribution, where positive means more extreme outliers than normal. Their practical value is as a check before applying any method that assumes normality: a skew beyond roughly ±1 says the mean is a poor summary and the median should lead instead. SKEW needs at least three values, KURT at least four. 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 “find kurtosis in excel”. Start on a copy or a tiny sample, keep the affected cells 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 data step that keeps your analysis trustworthy, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Testing whether a mean is representative: =SKEW(B2:B500) returning 1.8 says the data has a long right tail and the median is the honest headline. Confirming with the two summaries: a large gap between =AVERAGE(B2:B500) and =MEDIAN(B2:B500) tells the same story. =KURT(B2:B500) above 3 warns of more extreme outliers than a normal distribution would produce. SKEW answers "is the mean lying to me", which is the question that should precede every reported average. 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

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. The short version of “find kurtosis in excel”: 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

  • Reporting a mean on data with a skew beyond ±1, which describes almost nobody in the dataset.
  • Running them on fewer than three or four values, which returns #DIV/0!.
  • Treating a skew near zero as proof of normality; it rules out one departure, not all of them.

Frequently asked questions

What does a positive skew mean?

A long right tail — a few unusually large values pulling the mean above the median. Income and response times behave this way.

When should I use the median instead of the mean?

Whenever the skew is materially non-zero, roughly beyond ±1. The mean stops describing a typical case.

What does KURT tell me?

How heavy the tails are compared with a normal distribution. Positive means more extreme outliers than normal.