WorksheetFunction.F_Dist (Excel)
Returns the F probability distribution.
If any argument is nonnumeric, F_Dist returns the #VALUE! error value. If x is negative, F_Dist returns the #NUM! error value. If deg_freedom1 or deg_freedom2 is not an integer, it is truncated. If deg_freedom1 < 1, F_Dist returns the #NUM! error value. If deg_freedom < 1, F_Dist returns the #NUM! error value.
F_Dist (Arg1, Arg2, ..., Arg4)
Dim dblArg1 As Double: dblArg1 =
Dim dblArg2 As Double: dblArg2 =
Dim dblArg3 As Double: dblArg3 =
Dim dblF_Dist As Double
dblF_Dist = WorksheetFunction.F_Dist(Arg1:=dblArg1, Arg2:=dblArg2, Arg3:=dblArg3, Arg4:=True)
Arguments
Arg1, Arg2, ..., Arg4Arg1 (Double) - X - The value at which to evaluate the function.
Arg2 (Double) - Deg_freedom1 - The numerator degrees of freedom.
Arg3 (Double) - Deg_freedom2 - The denominator degrees of freedom.
Arg4 (Boolean) - Cumulative - A logical value that determines the form of the function. If cumulative is True, F_DIST returns the cumulative distribution function; if False, it returns the probability density function.