Get number of combinations without repetitions
=COMBIN(number, number_chosen)
| Parameter | Description |
|---|---|
number |
The total number of items. |
number_chosen |
The number of items in each combination. |
To use COMBIN, specify the total number of items and "number_chosen", which represents the number of items in each combination. For example, to calcul
=COMBIN(10,3) // returns 120
In the example shown above, the formula in cell D6, copied down, is:
=COMBIN(B6,C6)