[]
This function returns the normal cumulative distribution for the specified mean and standard deviation.
NORMDIST(x, mean, stdev, cumulative)
This function has these arguments:
Argument | Description |
|---|---|
x | [Required] Value for which to find the distribution |
mean | [Required] Arithmetic mean of the distribution |
stdev | [Required] Standard deviation of the distribution. Must be greater than zero |
cumulative | [Required] Set to TRUE to return the cumulative distribution function. Set to FALSE to return the probability mass function |
If mean = 0 and stdev = 1, this function returns the standard normal distribution, NORMSDIST.
NORMDIST(10,A3,B17,FALSE)
NORMDIST(10,R3C1,R17C2,FALSE)