[]
        
(Showing Draft Content)

NORMDIST

This function returns the normal cumulative distribution for the specified mean and standard deviation.

Syntax

NORMDIST(x, mean, stdev, cumulative)

Arguments

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

Remarks

If mean = 0 and stdev = 1, this function returns the standard normal distribution, NORMSDIST.

Examples

NORMDIST(10,A3,B17,FALSE)

NORMDIST(10,R3C1,R17C2,FALSE)