
Return quartile cutoffs with the exclusive method.
QUARTILE.EXC returns quartile values using the exclusive method. It is basically the quartile version of PERCENTILE.EXC, so it gives you the 25%, 50%, and 75% cutoffs while excluding the endpoints from the quartile scheme.
This function is useful when you want a quick quarter-based breakdown instead of typing percentile decimals. The three valid quartile positions are 1, 2, and 3, which map to the first quartile, median, and third quartile.
Returns quarter-based cutoffs from the exclusive percentile method.
The result is the boundary value for the quartile you selected.
=QUARTILE.EXC(array, quart)
array is the dataset, and quart tells Excel which quartile to return. Use 1 for Q1, 2 for Q2, and 3 for Q3.
| Function | Main use | Best when |
|---|---|---|
QUARTILE.EXC |
Exclusive quartiles | You want Q1, Q2, or Q3 from the exclusive method. |
QUARTILE.INC |
Inclusive quartiles | You need quartiles with support for 0 and 4 as minimum and maximum. |
PERCENTILE.EXC |
Any exclusive percentile | You need more than the standard quartile cutoffs. |
MEDIAN |
Middle value | You only need the center and nothing else. |
A short way to think about it is this: QUARTILE.EXC(array,1) lines up with the 25th percentile, 2 lines up with the median, and 3 lines up with the 75th percentile.
This function is useful when you want to divide a list into lower, middle, and upper sections without talking in percentile decimals. That makes it easy to explain in dashboards and reports. Instead of saying "use the 75th percentile," you can say "use the third quartile" and keep the logic readable.
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!. That is the practical difference from QUARTILE.INC, which allows 0 and 4.
This marks the lower-quarter boundary.
=QUARTILE.EXC(B1:B10,1) // Returns Q1.
Find the first quartile of B1:B10. Formula: =QUARTILE.EXC(B1:B10,1).
This marks the upper-quarter boundary.
=QUARTILE.EXC(A1:A10,3) // Returns Q3.
Find the third quartile of A1:A10. Formula: =QUARTILE.EXC(A1:A10,3).
Quartile 2 returns the middle cutoff.
=QUARTILE.EXC(B1:B10,2) // Returns Q2, the median.
Find the second quartile of B1:B10. Formula: =QUARTILE.EXC(B1:B10,2).
This is a simple way to define where the upper group begins.
=QUARTILE.EXC(B1:B10,3) // Returns the upper-quarter cutoff.
Use quartile 3 to mark the upper group. Formula: =QUARTILE.EXC(B1:B10,3).
QUARTILE.EXC returns quartile cutoffs using the exclusive method.Tell your friends about this post