WorksheetFunction.F_Inv method (Excel)
Returns the inverse of the F probability distribution.
Syntax
expression.F_Inv (Arg1, Arg2, Arg3)
expression A variable that represents a WorksheetFunction object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Arg1 | Required | Double | Probability - A probability associated with the F cumulative distribution. |
Arg2 | Required | Double | Deg_freedom1 - The numerator degrees of freedom. |
Arg3 | Required | Double | Deg_freedom2 - The denominator degrees of freedom. |
Return value
Double
Remarks
If any argument is nonnumeric, F_Inv returns the #VALUE! error value.
If probability < 0 or probability > 1, F_Inv returns the #NUM! error value.
If deg_freedom1 or deg_freedom2 is not an integer, it is truncated.
If deg_freedom1 < 1, or deg_freedom2 < 1, F_Inv returns the #NUM! 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.