BINOMDIST(number_s, trials, probability_s, cumulative)
=BINOMDIST(5, 10, 0.5, FALSE)
This formula calculates the probability of getting 5 successes in 10 trials where each trial has a 50% chance of success and returns the probability mass function.
=BINOMDIST(3, 5, 0.8, TRUE)
This formula calculates the cumulative probability of getting up to and including 3 successes in 5 trials where each trial has an 80% chance of success and returns the cumulative distribution function.
BINOMDIST is a formula used to calculate the probability of a certain number of successes in a fixed number of trials with a specified probability of success.