BINOM.DIST.RANGE(trials, probability_s, number_s, [number_s2])
=BINOM.DIST.RANGE(10, 0.5, 3)
This formula calculates the probability of getting exactly 3 successes in 10 independent trials, each with a 50% probability of success (e.g., getting 3 heads in 10 coin flips). The result is the probability of this specific outcome.
=BINOM.DIST.RANGE(10, 0.5, 3, 5)
This formula calculates the probability of getting between 3 and 5 successes (inclusive) in 10 independent trials, each with a 50% probability of success (e.g., getting 3, 4, or 5 heads in 10 coin flips). The result is the cumulative probability of getting 3, 4, or 5 successes.
The BINOM.DIST.RANGE function calculates the probability of a range of successes in a fixed number of trials, each with the same probability of success, using the binomial distribution.
=BINOM.DIST.RANGE(10, 0.5, 3)
=BINOM.DIST.RANGE(10, 0.5, 3, 5)