Skip to main content

HYPGEOM_DIST

Returns the hypergeometric distribution.

Syntax

expression.HYPGEOM_DIST(arg1, arg2, arg3, arg4, arg5);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe number of successes in the sample.
arg2RequiredApiRange | ApiName | numberThe size of the sample.
arg3RequiredApiRange | ApiName | numberThe number of successes in the population.
arg4RequiredApiRange | ApiName | numberThe population size.
arg5RequiredApiRange | ApiName | booleanA logical value (true or false) that determines the function form. If it is true, the function returns the cumulative distribution function. If it is false, the function returns the probability mass function.

Returns

number

Example

Get the hypergeometric distribution in a spreadsheet.

// How to get a result from a hypergeometric distribution in a spreadsheet.

// Use a function to get the result of hypergeometric distribution in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.HYPGEOM_DIST(2, 3, 3, 12, true));