WorksheetFunction.Percentile Method
Returns the k-th percentile of values in a range. You can use this function to establish a threshold of acceptance. For example, you can decide to examine candidates who score above the 90th percentile.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Function Percentile ( _
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(Arg1, _
Arg2)
double Percentile(
Object Arg1,
double Arg2
)
Parameters
Arg1
Type: System.ObjectArray - the array or range of data that defines relative standing.
Arg2
Type: System.DoubleK - the percentile value in the range 0..1, inclusive.
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 functions, see the Percentile_Inc(Object, Double) and Percentile_Exc(Object, Double) method.
If array is empty, Percentile returns the #NUM! error value.
If k is nonnumeric, Percentile returns the #VALUE! error value.
If k is < 0 or if k > 1, Percentile returns the #NUM! error value.
If k is not a multiple of 1/(n - 1), Percentile interpolates to determine the value at the k-th percentile.