BINOMDIST
Description
Returns the binomial distribution based on the number of trial successes, probability, and probability type.
Syntax
BINOMDIST(
number_s
,
trials
,
probability_s
,
cumulative
)
- number_s: The number of successes to calculate the probability for.
- trials: The number of trials. If you enter a non-integer, it is truncated.
- probability_s: The probability of success for a trial.
- cumulative: The type of distribution to use. FALSE = probability mass function; TRUE = cumulative distribution function.