WorksheetFunction.NormSInv Method

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

Namespace:  Microsoft.Office.Interop.Excel
Assembly:  Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)

Syntax

'Declaration
Function NormSInv ( _
    Arg1 As Double _
) As Double
'Usage
Dim instance As WorksheetFunction
Dim Arg1 As Double
Dim returnValue As Double

returnValue = instance.NormSInv(Arg1)
double NormSInv(
    double Arg1
)

Parameters

  • Arg1
    Type: System.Double

    Probability - a probability corresponding to the normal distribution.

Return Value

Type: System.Double

Remarks

Important

This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality. For more information about the new function, see the Norm_S_Inv(Double) method.

If probability is nonnumeric, NormSInv returns the #VALUE! error value.

If probability <= 0 or if probability >= 1, NormSInv returns the #NUM! error value.

Given a value for probability, NormSInv seeks that value z such that NORMSDIST(z) = probability. Thus, precision of NormSInv depends on precision of NormSDist(Double).

See Also

Reference

WorksheetFunction Interface

WorksheetFunction Members

Microsoft.Office.Interop.Excel Namespace