The NORM.S.DIST function returns the standard normal distribution of a value.
Syntax
NORM.S.DIST(
z,
cumulative
)
Parameters
- z: Value for which you want to calculate the standard normal distribution.
- cumulative: Logical value that determines the form of the function: if it takes the value True, it returns the cumulative distribution function . If it takes the value False, it returns the probability mass function.
Returned value
The NORM.S.DIST function returns a real number.
Examples
We can calculate the value of the standard normal distribution at point 1.45 with the following measure:
distribución = NORM.S.DIST(1.45, FALSE())
Related functions
Category
Statistical