WorksheetFunction.Quartile_Exc Method
Returns the quartile of the data set, based on percentile values from 0..1, exclusive.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Function Quartile_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.Quartile_Exc(Arg1, _
Arg2)
double Quartile_Exc(
Object Arg1,
double Arg2
)
Parameters
Arg1
Type: System.ObjectArray - The array or cell range of numeric values for which you want the quartile value.
Arg2
Type: System.DoubleQuart - The value to return.
Return Value
Type: System.Double
Remarks
If array is empty, Quartile_Exc returns the #NUM! error value.
If quart is not an integer, it is truncated.
If quart ≤ 0 or if quart ≥ 4, Quartile_Exc returns the #NUM! error value.
Min(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object), Median(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object), and Max(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object) return the same value as Quartile_Exc when quart is equal to 0 (zero), 2, and 4, respectively.