Returns the number of possible combinations within a given set of items, excluding repetitions. For example, in a set of 3 items A, B, C, if 2 are chosen, the combinations can be AB, AC, and BC, so it returns 3 as the result.
Syntax
n: Number of items in the set. Must be greater than k. Eg., 11
Examples
|
Formula |
Result |
|
=COMBIN(11;2) |
55 |
|
=COMBIN(24;6) |
134596 |
|
=COMBIN(12;12) |
1 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
|
#NUM! |
|
Similar Functions