The Excel QUARTILE.EXC Function

Related Functions:
PERCENTILE.EXC
QUARTILE.INC
QUARTILE.INC & QUARTILE.EXC Functions

The Quartile.Inc and Quartile.Exc functions both find a requested quartile of a supplied data set.

The difference between these two functions is that the Quartile.Inc function bases its calculation on a percentile range of 0 to 1 inclusive, whereas the Quartile.Exc function bases its calculation on a percentile range of 0 to 1 exclusive.

Function Description

The Excel Quartile.Exc function returns a requested quartile of a supplied range of values, based on a percentile range of 0 to 1 exclusive.

The function is new in Excel 2010 and so is not available in earlier versions of Excel.

The syntax of the Quartile.Exc function is:

QUARTILE.EXC( array, quart )

Where the function arguments are:

array - The range of data values for which you want to calculate the specified quartile.
quart -

An integer between 1 and 3, representing the required quartile.

(If quart = 1 or 3, the supplied array must contain more than 2 values).

Note that:


The Quartile.Exc function is closely related to the Excel Percentile.Exc function in that:


Quartile.Exc Function Examples

In column B of the spreadsheet below, the Excel Quartile.Exc function is used to calculate the quartiles of the set of values 1 - 5 (stored in cells A1-A5 of the example spreadsheet).

 Formulas:
  A B
1 2 =QUARTILE.EXC( A1:A5, 1 )
2 1 =QUARTILE.EXC( A1:A5, 2 )
3 4 =QUARTILE.EXC( A1:A5, 3 )
4 3  
5 5  
 Results:
  A B
1 2 1.5
2 1 3
3 4 4.5
4 3  
5 5  

Note that in the above examples:


For further examples of the Excel Quartile.Exc function, see the Microsoft Office website.


Quartile.Exc Function Errors

If you get an error from the Excel Quartile.Exc function this is likely to be one of the following:

Common Errors
#NUM! -

Occurs if either:

  • The supplied value of quart is is < 1 or > 3
or
  • The supplied array is empty
or
  • The supplied array has fewer than 3 values, and quart is equal to 1 or 3.
#VALUE! - Occurs if the supplied value of quart is non-numeric.