This article introduces you to the QUARTILE.INC function, one of the frequently used statistical functions in Excel.

Description: The function returns quartiles of a dataset, covering values from 0 to 1. It is supported from Excel 2010 onwards.
Syntax: QUARTILE.INC(array, quart), where array is an array or range containing values to find quartiles, and quart is the position of the quartile to return.
In this context:
- array: An array or range containing the values to find quartiles, a mandatory parameter.
- quart: The position of the quartile to return, a mandatory parameter with the following values:
+ quart = 0 -> the function returns the minimum value.
+ quart = 1 -> the function returns the first quartile (25th percentile).
+ quart = 2 -> the function returns the median (50th percentile).
+ quart = 3 -> the function returns the third quartile (75th percentile).
+ quart = 4 -> the function returns the maximum value.
Note:
- If quart is not an integer -> it is truncated to an integer.
- If array is empty -> the function returns the error value #NUM!
- If quart > 4 or quart < 0 -> the function returns the error value #NUM!
- The MIN and MAX, MEDIAN functions return values similar to the QUARTILE.INC function with corresponding values for quart = 0, quart = 4, quart = 2.
Example:
Identify the positions of quartiles based on the description in the data table below:

- Identify the position of the first quartile. In the cell where you want to calculate, enter the formula: =QUARTILE.INC(D6:J6,D7)

- Press Enter -> the 1st quartile is:

- 4th quartile. In the cell where you want to calculate, enter the formula: =QUARTILE.INC(D6:J6,D8). Press Enter -> the returned value is:

- In the case of quart = 0 -> the function still calculates normally.

- In the case of quart = 6 > 4 -> the function returns an error value #NUM!

Here is a guide and some specific examples of using the QUARTILE.INC function in Excel.
Wishing you success!
