Kurtosis Formula Excel

If you just need to kurtosis formula 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

Need it as an auditable file?

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

View template

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. 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 “kurtosis formula 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 formula 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

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

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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 “kurtosis formula 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.