WorksheetFunction.F_Inv (Excel)
Returns the inverse of the F probability distribution.
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.
F_Inv (Arg1, Arg2, Arg3)
Dim dblArg1 As Double: dblArg1 =
Dim dblArg2 As Double: dblArg2 =
Dim dblArg3 As Double: dblArg3 =
Dim dblF_Inv As Double
dblF_Inv = WorksheetFunction.F_Inv(Arg1:=dblArg1, Arg2:=dblArg2, Arg3:=dblArg3)
Arguments
Arg1, Arg2, Arg3Arg1 (Double) - Probability - A probability associated with the F cumulative distribution.
Arg2 (Double) - Deg_freedom1 - The numerator degrees of freedom.
Arg3 (Double) - Deg_freedom2 - The denominator degrees of freedom.