Returns the factorial of the sum of values divided by the product of the values' factorials.
Sample Usage
MULTINOMIAL(2,3,4)
MULTINOMIAL(C5:C9)
Syntax
MULTINOMIAL(value1, [value2,..])
- value1 - The first number or range to consider.
- value2,.. - [OPTIONAL] Additional numbers or ranges to consider.
Examples
MULTINOMIAL(2,3,4) returns the ratio of the factorial of the sum of 2,3, and 4 (362880) to the product of the factorials of 2,3, and 4 (288). It returns the result 1260.