Skip to main content

MULTINOMIAL

Returns the ratio of the factorial of a sum of numbers to the product of factorials.

Syntax

expression.MULTINOMIAL(args);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
argsRequiredApiRange | ApiName | numberUp to 255 numeric values for which the multinomial will be returned. The first argument is required, subsequent arguments are optional.

Returns

number

Example

Calculate the multinomial coefficient of a set of numbers in a spreadsheet.

// What is the multinomial coefficient value for a group of numbers in a spreadsheet?

// Find the ratio of combined factorial to individual factorials in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.MULTINOMIAL(2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 5));