QUARTILE.EXC Function

QUARTILE.EXC Function

QUARTILE.EXC Function

Return quartile cutoffs with the exclusive method.

ExcelClash Team
PUBLISHED

Summary

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.

Purpose

Return exclusive quartiles

Returns quarter-based cutoffs from the exclusive percentile method.

Return Value

Quartile cutoff

The result is the boundary value for the quartile you selected.

Syntax

=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.

Arguments

  • array - [required] The numeric range or array you want to split into quartiles.
  • quart - [required] The quartile to return. In practice, use 1, 2, or 3.

QUARTILE.EXC vs Other Functions

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.

Using the QUARTILE.EXC Function

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.

  • Use Q1 for the lower-quarter cutoff.
  • Use Q2 when you want the median through the quartile pattern.
  • Use Q3 to mark the start of the upper quarter.

Example 1 - Find the first quartile

This marks the lower-quarter boundary.

=QUARTILE.EXC(B1:B10,1) // Returns Q1.
Check Answer
Challenge #1
Target: Sheet1!F1
First Quartile

Find the first quartile of B1:B10. Formula: =QUARTILE.EXC(B1:B10,1).

Example 2 - Find the third quartile

This marks the upper-quarter boundary.

=QUARTILE.EXC(A1:A10,3) // Returns Q3.
Check Answer
Challenge #2
Target: Sheet1!F2
Third Quartile

Find the third quartile of A1:A10. Formula: =QUARTILE.EXC(A1:A10,3).

Example 3 - Return the median quartile

Quartile 2 returns the middle cutoff.

=QUARTILE.EXC(B1:B10,2) // Returns Q2, the median.
Check Answer
Challenge #3
Target: Sheet1!F3
Median Quartile

Find the second quartile of B1:B10. Formula: =QUARTILE.EXC(B1:B10,2).

Example 4 - Set an upper-group cutoff

This is a simple way to define where the upper group begins.

=QUARTILE.EXC(B1:B10,3) // Returns the upper-quarter cutoff.
Check Answer
Challenge #4
Target: Sheet1!F4
Top Group Cutoff

Use quartile 3 to mark the upper group. Formula: =QUARTILE.EXC(B1:B10,3).

Conclusion Recap

  • Main job: QUARTILE.EXC returns quartile cutoffs using the exclusive method.
  • Valid quart values: Use 1, 2, or 3.
  • Meaning: Q1 is 25%, Q2 is 50%, and Q3 is 75%.
  • Key limit: This version does not support endpoint quartiles like 0 or 4.
  • Good use cases: Group cutoffs, score bands, and upper or lower tier boundaries.
Tactical Arena
Select Scenario:
Share QUARTILE.EXC Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.