COMB

Description

COMB returns the number of ways to choose k items from n items without repetition and without order (the binomial coefficient, or "n choose k").

Example

COMB(10, 2)

This returns 45, as there are 45 ways to choose 2 items from a set of 10.

Last updated

Was this helpful?