NORMSDIST Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel NORMSDIST function returns the standard normal cumulative distribution (mean 0, standard deviation 1) for a given z-score. It is a legacy function; Microsoft replaced it in Excel 2010 with NORM.S.DIST, which adds a cumulative option.


Quick answer:
=NORMSDIST(1) area below z = 1 ≈ 0.8413

Syntax

=NORMSDIST(z)
ArgumentDescription
zRequiredThe z-score (number of standard deviations from the mean) at which to evaluate the standard normal distribution.

How to use it

NORMSDIST is the standard normal special case — mean 0, standard deviation 1 — so you only supply a z-score. The legacy function is cumulative only: it returns the area under the standard bell curve to the left of z.

=NORMSDIST(1) // P(Z ≤ 1) ≈ 0.8413
=NORMSDIST(0) // at the mean = 0.5

It is the workhorse behind converting z-scores to probabilities. Its inverse, NORMSINV (modern NORM.S.INV), turns a probability back into a z-score.

Use NORM.S.DIST in Excel 2010 and later. The modern NORM.S.DIST adds a cumulative argument so it can return the density too. NORMSDIST is kept only for backward compatibility.

Try it: interactive demo

Live demo

Pick a NORMSDIST example to see the formula and its result.

Result:

Practice workbook

📊
Download the free NORMSDIST practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Should I use NORMSDIST or NORM.S.DIST?
Use NORM.S.DIST in Excel 2010 or later. It takes z plus a cumulative flag; NORMSDIST is retained only so older workbooks keep working.
What does NORMSDIST(0) return?
It returns 0.5. Half the area under the standard normal curve lies to the left of the mean (z = 0), so the cumulative probability there is exactly one half.
How is NORMSDIST different from NORMDIST?
NORMSDIST assumes the standard normal (mean 0, sd 1) and takes just a z-score. NORMDIST lets you specify any mean and standard deviation. NORMSDIST(z) equals NORMDIST(z,0,1,TRUE).
Why does the legacy version have no cumulative argument?
The original NORMSDIST only returns the cumulative probability. For the density, use the modern NORM.S.DIST with its cumulative argument set to FALSE.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: NORM.S.DIST · NORMSINV · NORMDIST · NORMINV · STANDARDIZE