Returns the normal distribution for the specified mean and standard deviation.
Sample Usage
NORM.DIST(2,1,4,FALSE)
NORM.DIST(A2,A3,A4,TRUE)
Syntax
NORM.DIST(x, mean, standard_deviation)
- x - The input to the normal distribution function.
- mean - The arithmetic mean of the distribution.
- standard_deviation - The standard deviation of the distribution.
Examples
NORM.DIST(2,1,4,FALSE) returns a value of 0.09666.
NORM.DIST(A2,A3,A4,TRUE) returns the cumulative distribution function for the defined arguments.