다음을 통해 공유


WorksheetFunction.Norm_Inv Method (Excel)

Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.

Version Information

추가된 버전: Excel 2010

Syntax

.Norm_Inv(Arg1, Arg2, Arg3)

A variable that represents a WorksheetFunction object.

Parameters

Name

Required/Optional

Data Type

Description

Arg1

필수

Double

Probability - A probability corresponding to the normal distribution.

Arg2

필수

Double

Mean - The arithmetic mean of the distribution.

Arg3

필수

Double

Standard_dev - The standard deviation of the distribution.

Return Value

Double

Remarks

  • If any argument is non-numeric, NORM_INV returns the #VALUE! error value.

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

  • If standard_dev ≤ 0, NORM_INV returns the #NUM! error value.

  • If mean = 0 and standard_dev = 1, NORM_INV uses the standard normal distribution (see NORM_S_INV).

Given a value for probability, NORM_INV seeks that value x such that NORM_DIST(x, mean, standard_dev, TRUE) = probability. Thus, precision of NORM_INV depends on precision of NORM_DIST.

참고 항목

개념

WorksheetFunction Object

WorksheetFunction Object Members