NORM.S.DIST Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel NORM.S.DIST function returns the standard normal distribution — the bell curve with mean 0 and standard deviation 1 — for a given z-score, as either a cumulative probability or a density.


Quick answer:
=NORM.S.DIST(1,TRUE) cumulative probability at z=1 ~0.8413

Syntax

=NORM.S.DIST(z, cumulative)
ArgumentDescription
zRequiredThe z-score (value) at which to evaluate the standard normal distribution.
cumulativeRequiredTRUE returns the cumulative distribution (area to the left of z); FALSE returns the probability density at z.

How to use it

NORM.S.DIST is NORM.DIST locked to the standard normal curve — mean 0, standard deviation 1 — so you only pass a z-score and the cumulative flag.

=NORM.S.DIST(1,TRUE) // P(Z ≤ 1) ~0.8413
=NORM.S.DIST(1,FALSE) // density at z=1 ~0.2420

With TRUE you get the familiar z-table value — the proportion of the curve to the left of z. NORM.S.DIST(0,TRUE) is exactly 0.5, since half the curve lies left of the mean.

From raw value to z-score: standardize first with STANDARDIZE(x, mean, sd) (or (x-mean)/sd), then feed the z into NORM.S.DIST. The inverse direction is NORM.S.INV.

Try it: interactive demo

Live demo

Pick a NORM.S.DIST example to see the formula and its result.

Result:

Practice workbook

📊
Download the free NORM.S.DIST 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

What is a z-score?
A z-score expresses how many standard deviations a value is from the mean. NORM.S.DIST then converts that z into a probability on the standard normal curve.
What is the difference between cumulative TRUE and FALSE?
TRUE returns the cumulative probability (area to the left of z) — the classic z-table number. FALSE returns the probability density, the height of the standard normal curve at z.
How does NORM.S.DIST relate to NORM.DIST?
It is NORM.DIST with mean fixed at 0 and standard deviation at 1. NORM.S.DIST(z,TRUE) equals NORM.DIST(z,0,1,TRUE).
Did NORM.S.DIST replace an older function?
Yes. In Excel 2010 it replaced NORMSDIST, and unlike the old single-argument version it adds a cumulative flag so it can return the density too.

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.INV · NORM.DIST · NORM.INV · STANDARDIZE · NEGBINOM.DIST · MEDIAN