Syntax
| Parameter | Description |
|---|---|
| z | Parameter of the NORM.S.DIST function. |
| cumulative | Parameter of the NORM.S.DIST function. |
Examples
Z-table lookup
=NORM.S.DIST(1.96, TRUE)
P-value for z-test
=2 * (1 - NORM.S.DIST(ABS(2.15), TRUE))
Standard normal PDF
=NORM.S.DIST(0, FALSE)
Common Errors
Non-numeric z value or cumulative is not TRUE/FALSE.
Tips
NORM.S.DIST with cumulative=TRUE gives you the same values as printed z-tables, but with more precision and no need to look things up.
For a two-tailed p-value: =2*(1-NORM.S.DIST(ABS(z),TRUE)). For one-tailed: =1-NORM.S.DIST(z,TRUE) for the upper tail.
NORM.S.DIST(z, TRUE) is equivalent to NORM.DIST(z, 0, 1, TRUE) but shorter to type.
Try NORM.S.DIST in Viztab
Import your data and use NORM.S.DIST with 370+ other formulas. No signup required.
Open Viztab