How do I calculate quintiles in Excel with examples?

Quintiles in Excel refer to a statistical measure that divides a data set into five equal parts, with each part containing 20% of the data. This is useful for analyzing the distribution of numerical data and identifying outliers or extreme values. To calculate quintiles in Excel, you can use the QUARTILE function or the PERCENTILE function. For example, if you have a data set of test scores ranging from 0 to 100, you can use the QUARTILE function to find the scores at the 20th, 40th, 60th, and 80th percentiles, which would give you the quintiles. These values can then be used to create a box plot or to compare the distribution of the data among different groups. Using quintiles in Excel can provide valuable insights into the spread and variability of your data, aiding in decision making and analysis.

Calculate Quintiles in Excel (With Examples)


In statistics, quintiles are numbers that split a dataset into five groups of equal frequency.

The first quintile is the point where 20% of all data values lie below it. The second quintile is the point where 40% of all data values lie below it, and so forth.

We can use the following function to calculate the quintiles for a dataset in Excel:

=PERCENTILE(CELL RANGE, QUINTILE)

The following example shows how to use this function in practice.

Example: Calculate Quintiles in Excel

Suppose we have the following dataset with 20 values:

The following image shows how to calculate the quintiles for the dataset:

The way to interpret the quintiles is as follows:

  • 20% of all data values lie below 6.8.
  • 40% of all data values lie below 14.
  • 60% of all data values lie below 20.8.
  • 80% of all data values lie below 26.2.

We can also use the following formula to calculate each quintile at the same time:

=PERCENTILE(CELL RANGE, {0.2, 0.4, 0.6, 0.8})

The following image shows how to do so:

Notice that the quintiles calculated here match the quintiles we calculated earlier.

Additional Resources

x