Skip to main content

NORM_S_INV

Returns the inverse of the standard normal cumulative distribution (has a mean of zero and a standard deviation of one).

Syntax

expression.NORM_S_INV(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberA probability corresponding to the normal distribution, a number between 0 and 1 inclusive.

Returns

number

Example

Calculate the inverse of the standard normal distribution for a given probability in a spreadsheet.

// How do I find the inverse of the standard normal distribution in a spreadsheet?

// Get the quantile value for a probability in a standard normal distribution in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.NORM_S_INV(0.908));