In Excel: use =STANDARDIZE(x, mean, standard_dev) — it returns the z-score, the number of standard deviations a value sits from the mean.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
x | required | The value to convert to a z-score. |
mean | required | The mean of the distribution. |
standard_dev | required | The standard deviation. Must be greater than zero. |
Related functions
Mean = 70.714 · Std deviation = 5.992
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
STANDARDIZE converts a raw value into a z-score: how many standard deviations it lies above or below the mean. That single number makes otherwise incomparable measures comparable — a test score and a response time can be ranked against each other once both are standardised. It is also the basis of the usual outlier rule, where anything beyond roughly ±3 warrants a look. The standard deviation argument must be positive; zero returns #NUM!, which happens when every value in the range is identical. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “calculate z score 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 calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
A value of 88 in a distribution with a mean of 72 and standard deviation of 9: =STANDARDIZE(88, 72, 9) returns 1.78, meaning it sits 1.78 deviations above average. Applied down a column, =STANDARDIZE(B2, AVERAGE($B$2:$B$200), STDEV.S($B$2:$B$200)) standardises the whole series and makes outliers visible at a glance. STANDARDIZE puts different measures on one scale, which is the prerequisite for comparing or combining them at all. 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
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. 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. Treat “calculate z score 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
- Forgetting to anchor the mean and standard-deviation ranges when filling down, so each row standardises against a different distribution.
- A standard deviation of zero, which returns
#NUM!— every value in the range is identical. - Reading z-scores as probabilities; converting them needs NORM.S.DIST.
Frequently asked questions
What is a z-score?
The number of standard deviations a value lies from the mean. Zero is exactly average, +2 is two deviations above.
What counts as an outlier?
A common rule of thumb is beyond ±3, though the right threshold depends on the data and how much of it you have.
Why does STANDARDIZE return #NUM!?
The standard deviation argument is zero or negative — usually because every value in the source range is the same.
Other ways people ask this
This is also commonly searched as “how to calculate the z score in excel”, “how to calculate a z score in excel”, “calculate z score in excel” and “how to calculate z-score in excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.
Why do people search for this in so many different ways?
Because the same task has many names. “how to calculate the z score in excel”, “how to calculate a z score in excel”, “calculate z score in excel” all point at the one operation explained on this page, which is why they all lead here.