WorksheetFunction.GammaInv method (Excel)

Returns the inverse of the gamma cumulative distribution. If p = GAMMADIST(x,...), then GAMMAINV(p,...) = x.

Important

This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.

For more information about the new function, see the Gamma_Inv method.

Syntax

expression.GammaInv (Arg1, Arg2, Arg3)

expression A variable that represents a WorksheetFunction object.

Parameters

Name Required/Optional Data type Description
Arg1 Required Double Probability - the probability associated with the gamma distribution.
Arg2 Required Double Alpha - a parameter to the distribution.
Arg3 Required Double Beta - a parameter to the distribution. If beta = 1, GammaInv returns the standard gamma distribution.

Return value

Double

Remarks

Use this function to study a variable whose distribution may be skewed.

If any argument is text, GammaInv returns the #VALUE! error value.

If probability < 0 or probability > 1, GammaInv returns the #NUM! error value.

If alpha ≤ 0 or if beta ≤ 0, GammaInv returns the #NUM! error value.

Given a value for probability, GammaInv seeks that value x such that GAMMADIST(x, alpha, beta, TRUE) = probability. Thus, precision of GammaInv depends on precision of GammaDist. GammaInv uses an iterative search technique. If the search has not converged after 64 iterations, the function returns the #N/A error value.

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.