NORMDIST function

Category: Compatibility
Introduced: Excel 2010

Summary

Returns the normal cumulative distribution

Syntax

NORMDIST(x,mean,standard_dev,cumulative) The NORMDIST function syntax has the following arguments:
• X Required. The value for which you want the distribution
• Mean Required. The arithmetic mean of the distribution
• Standard_dev Required. The standard deviation of the distribution
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if cumulative is FALSE, it returns the probability mass function.

Example

=NORM.DIST(A2,A3,A4,TRUE)
=NORM.DIST(A2,A3,A4,FALSE)

Microsoft Support Page

https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d

Back to Functions