GAMMA.DIST function
GAMMA.DIST(value,
alpha, beta, isCumulative) GAMMA.DIST(value;
alpha; beta; isCumulative)
value
Number or { Number }
A value at which to evaluate the function.
alpha
Number or { Number }
A parameter to the distribution.
beta
Number or { Number }
A parameter to the distribution.
isCumulative
Logical or { Logical }
FALSE to calculate the probability density function and TRUE to calculate the cumulative distribution function.
Returns
Number or { Number }
A value for a Gamma distribution.
Returns a value for a Gamma distribution.
Example
GAMMA.DIST(2, 1, 1,
TRUE)GAMMA.DIST(2; 1; 1;
TRUE)
Returns roughly 0.86.