TRY NEW VERSION

NORM_S_INV

NORM_S_INV(arg1) → { number }

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

Parameters:

Name Type Description
arg1 number

A probability corresponding to the normal distribution, a number between 0 and 1 inclusive.

Returns:

Type
number

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.NORM_S_INV(0.908));
builder.SaveFile("xlsx", "NORM_S_INV.xlsx");
builder.CloseFile();

Resulting document