How to STANDARDIZE Data in Excel

“standardize data in excel” comes up constantly, so this page leads with the exact answer, gives you a tool to try it on your own numbers, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

In Excel: use =STANDARDIZE(x, mean, standard_dev) — it returns the z-score, the number of standard deviations a value sits from the mean.

Syntax

=STANDARDIZE(x, mean, standard_dev)

Arguments

ArgumentDescription
xrequiredThe value to convert to a z-score.
meanrequiredThe mean of the distribution.
standard_devrequiredThe standard deviation. Must be greater than zero.

Related functions

STDEVAVERAGEPERCENTRANK
ƒxZ-Score CalculatorLive

Mean = 70.714 · Std deviation = 5.992

Z-score
1.550
Percentile
93.9%
=(B2AVERAGE(A1:A7))/STDEV.S(A1:A7)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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. 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. Treat “standardize data in 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 cells 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 workflow that saves repeating the same clicks every week into a method you can reuse, explain, and defend when the workbook leaves your screen.

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

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. 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. If you take one thing from this page on “standardize data in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

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.