WorksheetFunction.Binom_Inv method (Excel)
Returns the inverse of the individual term binomial distribution probability.
expression.Binom_Inv (Arg1, Arg2, Arg3)
expression A variable that represents a WorksheetFunction object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Arg1 | Required | Double | Trials - the number of Bernoulli trials. |
Arg2 | Required | Double | Probability_s - the probability of a success on each trial. |
Arg3 | Required | Double | Alpha - the criterion value. |
Double
If trials, probability_s, or alpha is nonnumeric, the Binom_Inv method generates an error.
If trials is not an integer, it is truncated.
If trials < 0, the Binom_Inv method generates an error.
If probability_s < 0 or probability_s > 1, the Binom_Inv method generates an error.
If alpha < 0 or alpha > 1, the Binom_Inv method generates an error.
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.