
Return quartile cutoffs from the full range, including minimum and maximum.
QUARTILE.INC returns quartile values using the inclusive method. It gives you the usual quartile cutoffs, but it also lets you reach the endpoints of the distribution with quart values 0 and 4.
That makes it a very practical option when you want one function to cover minimum, lower quartile, median, upper quartile, and maximum in the same pattern. It is the quartile version of PERCENTILE.INC.
Returns quarter-based cutoffs from the inclusive percentile method.
The result is the boundary value for the quartile you selected.
=QUARTILE.INC(array, quart)
array is the dataset, and quart tells Excel which position to return. Use 0 for minimum, 1 for Q1, 2 for median, 3 for Q3, and 4 for maximum.
| Function | Main use | Best when |
|---|---|---|
QUARTILE.INC |
Inclusive quartiles | You want quartiles plus easy access to minimum and maximum. |
QUARTILE.EXC |
Exclusive quartiles | You need the stricter exclusive method instead. |
PERCENTILE.INC |
Any inclusive percentile | You want percentiles beyond the standard quartile points. |
MIN / MAX |
Endpoints only | You only need the smallest or largest value. |
The inclusive version is broader because it supports the endpoints directly. That is why quart value 0 can return the minimum and quart value 4 can return the maximum.
This function works well when you want a simple five-point view of a dataset: min, Q1, median, Q3, and max. That is useful for summaries, distribution checks, and quick benchmarks. It is also easier to explain to someone reading the workbook because the quart values follow a clean 0 to 4 scale.
Microsoft notes that if the array is empty, Excel returns #NUM!. If quart is not an integer, Excel truncates it. If quart<0 or quart>4, Excel returns #NUM!.
Quart value 0 gives the lower endpoint of the dataset.
=QUARTILE.INC(B1:B10,0) // Returns the minimum.
Return the minimum of B1:B10 with quart value 0. Formula: =QUARTILE.INC(B1:B10,0).
Quart value 4 gives the upper endpoint.
=QUARTILE.INC(B1:B10,4) // Returns the maximum.
Return the maximum of B1:B10 with quart value 4. Formula: =QUARTILE.INC(B1:B10,4).
This marks the lower-quarter cutoff.
=QUARTILE.INC(A1:A10,1) // Returns Q1.
Find the first quartile of A1:A10. Formula: =QUARTILE.INC(A1:A10,1).
This marks where the upper quarter begins.
=QUARTILE.INC(B1:B10,3) // Returns Q3.
Find the third quartile of B1:B10. Formula: =QUARTILE.INC(B1:B10,3).
QUARTILE.INC returns quartile cutoffs using the inclusive method.Tell your friends about this post