WorksheetFunction.Percentile_Exc Method

Returns the k-th percentile of values in a range, where k is in the range 0..1, exclusive.

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

Syntax

'Declaration
Function Percentile_Exc ( _
    Arg1 As Object, _
    Arg2 As Double _
) As Double
'Usage
Dim instance As WorksheetFunction
Dim Arg1 As Object
Dim Arg2 As Double
Dim returnValue As Double

returnValue = instance.Percentile_Exc(Arg1, _
    Arg2)
double Percentile_Exc(
    Object Arg1,
    double Arg2
)

Parameters

  • Arg1
    Type: System.Object

    Array - The array or range of data that defines relative standing.

  • Arg2
    Type: System.Double

    K - The percentile value in the range 0..1, exclusive.

Return Value

Type: System.Double

Remarks

If array is empty, Percentile_Exc returns the #NUM! error value

If k is nonnumeric, Percentile_Exc returns the #VALUE! error value.

If k is ≤ 0 or if k ≥ 1, Percentile_Exc returns the #NUM! error value.

If k is not a multiple of 1/(n - 1), Percentile_Exc interpolates to determine the value at the k-th percentile.

Percentile_Exc will interpolate when the value for the specified percentile lies between two values in the array. If it cannot interpolate for the percentile, k specified, Excel will return #NUM! error.

See Also

Reference

WorksheetFunction Interface

WorksheetFunction Members

Microsoft.Office.Interop.Excel Namespace