Skip to main content

EXPONDIST

Returns the exponential distribution.

Syntax

expression.EXPONDIST(arg1, arg2, arg3);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe value of the x function, a nonnegative number.
arg2RequiredApiRange | ApiName | numberThe lambda parameter value, a positive number.
arg3RequiredApiRange | ApiName | booleanA logical value that determines the function form. If this parameter is true, the function will return the cumulative distribution function, if it is false, it will return the probability density function.

Returns

number

Example

Return the exponential distribution in a spreadsheet.

// How to get the exponential distribution in a spreadsheet.

// Use function to calculate an exponential distribution in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
let ans = func.F_DIST(10, 6, 4, false);
worksheet.GetRange("B2").SetValue(ans);