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