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
Arguments
| Argument | Description | |
|---|---|---|
number1 | required | The first value or range. At least three values are needed for SKEW, four for KURT. |
number2, ... | optional | Further values or ranges. |
Related functions
n = 7 · Sum = 103.00 · Min = 9.00 · Max = 21.00
7 values
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. For “find skew in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. 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 is what makes a data step that keeps your analysis trustworthy useful in real work: repeatable, auditable, and not dependent on memory or luck.
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. 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. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Treat “find skew 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
- 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.