GAMMA.DIST function

Category: Statistical
Introduced: Excel 2010

Summary

Returns the gamma distribution

Syntax

GAMMA.DIST(x,alpha,beta,cumulative) The GAMMA.DIST function syntax has the following arguments:
• X Required. The value at which you want to evaluate the distribution.
• Alpha Required. A parameter to the distribution.
• Beta Required. A parameter to the distribution. If beta = 1, GAMMA.DIST returns the standard gamma distribution.
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, GAMMA.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.

Example

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

Microsoft Support Page

https://support.microsoft.com/en-us/office/gamma-dist-function-9b6f1538-d11c-4d5f-8966-21f6a2201def

Back to Functions