What is percentile in excel

Excel for Microsoft 365 Excel for Microsoft 365 for Mac Excel for the web Excel 2021 Excel 2021 for Mac Excel 2019 Excel 2019 for Mac Excel 2016 Excel 2016 for Mac Excel 2013 Excel 2010 Excel 2007 Excel for Mac 2011 Excel Starter 2010 More…Less

Returns the k-th percentile of values in a range. You can use this function to establish a threshold of acceptance. For example, you can decide to examine candidates who score above the 90th percentile.

Important: 

  • This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. Although this function is still available for backward compatibility, you should consider using the new functions from now on, because this function may not be available in future versions of Excel. 

  • For more information about the new functions, see PERCENTILE.EXC function and PERCENTILE.INC function.

Syntax

PERCENTILE(array,k)

The PERCENTILE function syntax has the following arguments:

  • array     Required. The array or range of data that defines relative standing.

  • k  Required. The percentile value in the range 0..1, inclusive.

Remarks

  • If k is non-numeric, PERCENTILE returns the #VALUE! error value.

  • If k is < 0 or if k > 1, PERCENTILE returns the #NUM! error value.

  • If k is not a multiple of 1/(n — 1), PERCENTILE interpolates to determine the value at the k-th percentile.

Example

In this example, we’ll find the 30th percentile of the list in cells E2:E5.

Excel PERCENTILE function to return the 30th percentile of a given range with =PERCENTILE(E2:E5,0.3).

Need more help?

You can always ask an expert in the Excel Tech Community or get support in the Answers community.

Need more help?

Summary

The Excel PERCENTILE function calculates the «kth percentile» for a set of data. A percentile is a value below which a given percentage of values in a data set fall. You can use PERCENTILE to determine the 90th percentile, the 80th percentile, etc.

Purpose 

Return value 

Calculated percentile for k

Arguments 

  • array — Data values.
  • k — Number representing kth percentile.

Syntax 

Usage notes 

The Excel PERCENTILE function calculates the «kth percentile» for a set of data. A percentile is a value below which a given percentage of values in a data set fall. A percentile calculated with .4 as k means 40% percent of values are less than or equal to the calculated result, a percentile calculated with k = .9 means 90% percent of values are less than or equal to the calculated result.

To use PERCENTILE, provide a range of values and a number between 0 and 1 for the «k» argument, which represents percent. For example:

=PERCENTILE(range,.4) // 40th percentile
=PERCENTILE(range,.9) // 90th percentile

You can also specify k as a percent using the % character:

=PERCENTILE(range,80%) // 80th percentile

PERCENTILE returns a value greater than or equal to the specified percentile.

In the example shown, the formula in G5 is:

=PERCENTILE(scores,E5)

where «scores» is the named range C5:C14.

Note: Microsoft classifies PERCENTILE as a «compatibility function», now replaced by the PERCENTILE.INC function.

Notes

  • k can be provided as a decimal (.5) or a percentage (50%)
  • k must be between 0 and 1, otherwise PERCENTILE will return the #NUM! error.
  • When percentiles fall between values, PERCENTILE will interpolate and return an intermediate value.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi — I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.

I just wanted to say thanks for simplifying the learning process for me! Your website is a life saver!

Get Training

Quick, clean, and to the point training

Learn Excel with high quality video training. Our videos are quick, clean, and to the point, so you can learn Excel in less time, and easily review key topics when needed. Each video comes with its own practice worksheet.

View Paid Training & Bundles

Help us improve Exceljet

Percentile is a statistics metric is that is often used when working with data.

It gives you an idea of where a value lies in the dataset (i.e., its position/rank in the dataset).

In practical life, I have seen the percentile value being used in competitive exams, where on the given score, you get the percentile value. This tells you where you stand in comparison to all the other people who appeared for that exam.

In this tutorial, I will explain everything you need to know about the percentile function in Excel, and show you examples of how to calculate the 90th percentile or 50th percentile in Excel.

So let’s get started!

What is Percentile? An Easy Explanation!

Percentile value tells you the relative position of a data point in the whole dataset.

For example, if I have the scores of 100 students and I tell you that the 90th percentile score is 84, it means that if anyone scores 84, then their score would be above 90% of the students.

Similarly, if the 50th percentile value for a dataset is 60, it means that anyone who got a score of 60 has about 50% of the people with better scores and about 50% of the people with a lesser score.

This is a preferred method as it’s more meaningful than just giving the score.

For example, if I tell you that your score is 90, it doesn’t tell you where you stand relative to the others. But if I tell you that your score’s percentile is 90th, you immediately know that you have done better than 90% of the people who took the exam.

Calculating the percentile value in Excel is very easy as it has some inbuilt functions to do this.

PERCENTILE Functions in Excel

There are three variations of the percentile function available in Excel. If you’re using Excel 2010 or versions after that, you will have access to all these three functions.

  • PERCENTILE – this is old function that is now kept for backward compatibility purposes. You can use this, but it’s best to use the new ones (if you have those in your version of Excel). The result of this function is a value between 0 and 1
  • PERCENTILE.INC – this is the new formula (which works exactly like the PERCENTILE function). In most cases, this is the function you would need to use. The result of this function is a value between 0 and 1
  • PERCENTILE.EXC – this also works like the PERCENTILE.INC function with one difference – the result of this function will be a value between 0 and 1, but excludes K values between 0 to 1/(N+1) as well as N/(N+1) to 1 (where N is the size of the sample)

To put it simply, use PERCENTILE.INC in most cases (and if you are using Excel 2007 or prior versions, use PERCENTILE function)

Below is the syntax of the PERCENTILE.INC function in Excel:

 =PERCENTILE.INC(array,k)

where:

  1. array is the range of cells where you have the values for which you want to find out the K-th percentile
  2. k is the value between 0 and 1, and gives you the k-th percentile value. For example, if you want to calculate 90th percentile value, this would be 0.9 or 90%, and for 50th percntile value, this would be 0.5 or 50%

The syntax remains the same for the PERCENTILE and PERCENTILE.EXC functions.

Calculating 90th Percentile in Excel (or 50th Percentile)

Suppose you have a dataset as shown below and you want to know the 90th percentile value for this dataset.

Dataset for calculating Percentile

Below is the formula that will give you the 90th Percentile:

=PERCENTILE.INC(A2:A21,90%)
Formula to calculate 90th Percentlle

In the above formula, I have used 90% as the k value. You can also use 0.9 to get the 90th percentile.

The result of this formula tells me that 90% of the values in this dataset lies below 95.3

Also, note that you don’t need to have the data sorted for this formula to work. Sorting and giving you the final result is something PERCENTILE function automatically does in the backend.

Similarly. in case you want to calculate the 50th percentile, you can use the formula below:

=PERCENTILE.INC(A2:A21,50%)

PERCENTILE.INC vs PERCENTILE.EXC – What’s the Difference?

Now, if you’re wondering why there are two separate percentile functions in Excel, let me try and explain.

When you use PERCENTILE.INC function, it would calculate the result while including the first and last value in the dataset. And if you want to exclude the first and the last value from the calculation, you need to use the PERCENTILE.EXC function.

In most cases, you will be required to use the PERCENTILE.INC function only.

But since we are talking about the difference between the two functions, let me try and show you the difference with an example.

Suppose you have the dataset as shown below where I have calculated different percentile values (in column C) using both PERCENTILE.INC and PERCENTILE.EXC.

Percentile INC vs EXC

As you can see, apart from getting different results, the PERCENTILE.EXC function would return a #NUM! error when I try to calculate the percentile value for 0 or 100%

In fact, PERCENTILE.EXC would give you an error for any value between:

  • 0 and 1/(N+1)
  • N/(N+1) and 1

where N is the total number of data points in the dataset (10 in this example)

So it would give the NUM error for any Kth values that lie between 0 and 1/11 or 10/11 and 1.

So it’s good to have the PERCENTILE.EXC function, but in most cases, you can just go ahead and use the PERCENTILE or the PERCENTILE.INC function.

I hope you found this tutorial useful!

Other Excel tutorials you may also like:

  • Calculate Percentage Change in Excel (% Increase/Decrease Formula)
  • How to Make a Bell Curve in Excel (Step-by-step Guide)
  • How to Calculate and Format Percentages in Excel
  • How to Calculate Standard Deviation in Excel (Step-by-Step)
  • How to Rank within Groups in Excel
  • How to Get Descriptive Statistics in Excel?

How to Use Excel to Find Percentiles

  1. Open a new Microsoft Excel 2010 worksheet.
  2. Click on cell “A1” and enter the values in your data set into the cells in column A.
  3. Click on cell “B1.”
  4. Enter the following formula into the cell, excluding quotes: “=PERCENTILE.
  5. Press “Enter” to complete your formula.

Contents

  • 1 How do I calculate a percentile in Excel?
  • 2 How do I calculate 95th percentile in Excel?
  • 3 How do you find the 25th percentile in Excel?
  • 4 How do you use percentiles?
  • 5 How do you calculate the 75th percentile?
  • 6 How do you find the 35th percentile in Excel?
  • 7 What is the formula to calculate percentile?
  • 8 How is percentile calculated?
  • 9 What is the 90th percentile?
  • 10 What is percentile example?
  • 11 What is the 25th percentile?
  • 12 What is the 99 percentile?
  • 13 What is the 65th percentile?
  • 14 What is difference between percentage and percentile?
  • 15 Is 10th percentile good?
  • 16 What is the 100th percentile?
  • 17 What is 10th percentile salary?

How do I calculate a percentile in Excel?

Calculate rank percentile in Excel
To calculate the rank percentile of a list data, you can use a formula. Select a blank cell that you will place the rank percentile at, type this formula =RANK. EQ(B2,$B$2:$B$9,1)/COUNT($B$2:$B$9), press Enter key and drag fill handle down to calculate all rank percentiles.

How do I calculate 95th percentile in Excel?

We incorporate this function in a formula, the general formula, therefore, will be; =PERCENTILE (B2: B10, 0.95). Since our data set has ten cells, we are going to find the percentile from cell B2 to cell B10. We are using 0.95 because the whole data set is 100% and 95 divided by 100 is 0.95.

How do you find the 25th percentile in Excel?

The QUARTILE function syntax has the following arguments: Array Required. The array or cell range of numeric values for which you want the quartile value.
Syntax.

If quart equals QUARTILE returns
1 First quartile (25th percentile)
2 Median value (50th percentile)
3 Third quartile (75th percentile)
4 Maximum value

How do you use percentiles?

Percentiles are commonly used to report scores in tests, like the SAT, GRE and LSAT. for example, the 70th percentile on the 2013 GRE was 156. That means if you scored 156 on the exam, your score was better than 70 percent of test takers. The 25th percentile is also called the first quartile.

How do you calculate the 75th percentile?

The interquartile range of a set of scores is the difference between the third and first quartile – that is, the difference between the 75th and 25th percentiles. The 75th percentile is between 78 and 86, so, if 41 is subtracted from those numbers, the upper and lower bounds of the 25th percentile can be found.

How do you find the 35th percentile in Excel?

Enter the following formula into the cell, excluding quotes: “=PERCENTILE. EXC(A1:AX,k)” where “X” is the last row in column “A” where you have entered data, and “k” is the percentile value you are looking for.

What is the formula to calculate percentile?

Hence, the percentile formula is:

  1. Percentile = (n/N) × 100.
  2. Percentile = (Number of Values Below “x” / Total Number of Values) × 100.
  3. Example 1: The scores obtained by 10 students are 38, 47, 49, 58, 60, 65, 70, 79, 80, 92.
  4. Solution:

How is percentile calculated?

Percentile is calculated by the ratio of the number of values below ‘x’ to the total number of values. The kth percentile is a value in a data set that divides the data into two parts. The lower part contains k percent of the data, and the upper part contains the rest of the data.

What is the 90th percentile?

90th percentile means that you are or something is ahead of the 90% of the sample space. For example after giving a test you get to know that you have scored 92.36% percentile. It means simply that you are above 92.36% people or students who attended the examination.

What is percentile example?

A percentile is a comparison score between a particular score and the scores of the rest of a group. It shows the percentage of scores that a particular score surpassed. For example, if you score 75 points on a test, and are ranked in the 85 th percentile, it means that the score 75 is higher than 85% of the scores.

What is the 25th percentile?

25th Percentile – Also known as the first, or lower, quartile. The 25th percentile is the value at which 25% of the answers lie below that value, and 75% of the answers lie above that value. 50th Percentile – Also known as the Median.Half of the answers lie below the median and half lie above the median.

What is the 99 percentile?

To score 99 percentile means that there are about 99 percent of people( who appeared for the test )who have scored less than you,that means you are in the top one percent of students who have scored great .

What is the 65th percentile?

If 65% of the scores were below yours, then your score would be the 65th percentile.Using the 65th percentile as an example, the 65th percentile can be defined as the lowest score that is greater than 65% of the scores.

What is difference between percentage and percentile?

The key difference between percentage and percentile is the percentage is a mathematical value presented out of 100 and percentile is the per cent of values below a specific value. The percentage is a means of comparing quantities. A percentile is used to display position or rank.

Is 10th percentile good?

Percentiles are best explained through examples.If a candidate scores in the 90th percentile, they have scored higher than 90% of the norm group, putting them in the top 10%. If a candidate scores in the 10th percentile, they have scored higher than 10% of the norm group, putting them in the bottom 10%.

What is the 100th percentile?

The 100th percentile is defined to be the largest value in the list, which is 50. So the 5th, 30th, 40th, 50th and 100th percentiles of the ordered list {15, 20, 35, 40, 50} using the nearest-rank method are {15, 20, 20, 35, 50}.

What is 10th percentile salary?

A. A percentile is the point at or below which a given percentage of respondents fall. For example, the 10th percentile is the value at or below which 10 percent of the respondents fall—a 10th percentile salary of $80,000 means that 10 percent of all the respondents in that category will make $80,000 or less.

PERCENTILE in Excel

PERCENTILE Function (Table of Contents)

  • PERCENTILE in Excel
  • PERCENTILE Formula in Excel
  • How to Use PERCENTILE Function in Excel?

For Percentile calculation, we have a function in excel with the same name. Percentile function is used for calculating the nth percentile of any set of values below, which given the percentage of observations of the selected set of values, falls. Suppose we have 10 numbers, for which we calculate percentile at 5th value, then we will get the percentile below selected Kth value.

Difference between Percentile & percentage function

Percentage function

The exam reflects how well you have done in the exam as an individual; the percentage score is calculated on the basis of the below-mentioned formula.

Percentage = Marks scored/Total score x 100 e.g. If marks are 80, 80/100 x 100 = 80%

Excel Percentile Function

Percentile is a measure of your performance relative to others; it depends on the other students’ scores also.

Percentile = Number of students scored less than you/Total number of students x 100

Suppose, if your score or marks is 60th, out of 100 students, that means your score is better than 60 people, and hence your percentile is 60%ile. Here it indicates what percent of students you are ahead of, including yourself.

When you enter the PERCENTILE function in the excel cell, two variants of the Percentile function appear PERCENTILE.EXC and PERCENTILE.INC function. (Explained on next page)

PERCENTILE Formula

  • From excel 2010 onwards, the Percentile function is replaced by PERCENTILE.EXC and PERCENTILE.INC function.
  • Excel Percentile function is used to report scores in exams or tests, like GRE, GMAT and other entrance exams.
  • PERCENTILE.INC is an updated version which is most commonly used to calculate percentile
  • PERCENTILE.INC is used as both worksheet function & VBA function in Excel

PERCENTILE Formula in Excel

Below is the Excel PERCENTILE Formula:

PERCENTILE Formula in Excel 

The Excel Percentile function has the below-mentioned argument

Array (Compulsory or required argument): The array of data values for which you want to calculate the Kth percentile.

K (Compulsory or required argument): It is the percentile value you are looking for or the Value of the required percentile (It is either between 0% and 100% or between 0 and 1)

e.g. if you wanted to find out the value for the 60th percentile, you would use “0.6” as your percentile value. (Note: K is any percentage expressed as a decimal, such as 0.20 for 20%)

PERCENTILE.INC (INC is inclusive): means the value of k is within the range 0 to 1 Inclusive; when the value of K is in the range of zero to one, you will get a result.

PERCENTILE.EXC (EXC is exclusive): The value of k is within the range of 0 to 1 exclusive. An error occurs if you use a value of K, which is outside the valid range for the data set.

How to use PERCENTILE Function in Excel?

PERCENTILE Function is very simple to use. Let us now see how to use the PERCENTILE function in Excel with the help of some examples.

You can download this PERCENTILE Function Excel Template here – PERCENTILE Function Excel Template

PERCENTILE in Excel – Example #1

PERCENTILE Function To Calculate 95th Percentile In Entrance Exam

In the below-mentioned table, it contains student name in the column B (B8 to B24) & Their score in column C (C8 to C24) I need to find out the score for the 95th percentile

PERCENTILE Example 1-1

Let’s apply the PERCENTILE function in cell “E8”. Select the cell “E8”. where the PERCENTILE function needs to be applied.

PERCENTILE Example 1-2

Click the insert function button (fx) under the formula toolbar, the dialog box will appear, type the keyword “PERCENTILE” in the search for a function box, the PERCENTILE function will appear in select a function box. Three options appear in select a function box, i.e. PERCENTILE, PERCENTILE.EXC and PERCENTILE.INC function. The PERCENTILE function was previously used for excel 2007 & earlier version. So, you need to select PERCENTILE.INC function. (The value of k is within the range 0 to 1 inclusive). Double click on PERCENTILE.INC.

PERCENTILE Example 1-3

A dialog box appears where arguments for PERCENTILE.INC function needs to be filled or entered, i.e. =PERCENTILE (array, k)

PERCENTILE Example 1-4

i.e. =PERCENTILE.INC(C8:C24,0.95) Here, the score data is present in the range (C8 to C24) for which we need to apply PERCENTILE.INC function

To enter Array argument, click inside cell C8 and you’ll see the cell selected, then Select the cells till C24. So that column range will get selected, i.e. C8:C24

K, it is the percentile value we are looking for. Here I need to find out the value for the 95th percentile so that I will use “0.95” as the percentile value. (K is any percentage expressed as a decimal, i.e. 0.95 for 95%) Click ok.

PERCENTILE Example 1-5

After entering both the arguments. =PERCENTILE.INC (C8:C24,0.95), i.e. returns the score for the 95th percentile, i.e. 93.6, as a result in the cell E8. 95th percentile falls between 93 & 96. Excel has interpolated between 93 to 96 score to produce the result 93.6.

PERCENTILE Example 1-6

PERCENTILE in Excel – Example #2

PERCENTILE Function To Calculate 90th Percentile In Entrance Exam

The below-mentioned table below contains the student name in column G (G6 to G20) & their GRE exam score in column H (H6 to H20). I need to find out the score for the 90th percentile

PERCENTILE Example 2-1

Let’s apply PERCENTILE.INC function in cell “J8”. Select the cell “J8”. where PERCENTILE. INC function needs to be applied.

PERCENTILE Example 2-2

Click the insert function button (fx) under the formula toolbar, the dialog box will appear, type the keyword “PERCENTILE.INC” in the search for a function box, PERCENTILE.INC function will appear to select a function box. Double click on PERCENTILE.INC.

PERCENTILE Example 2-3

A dialog box appears where arguments for PERCENTILE.INC function needs to be filled or entered, i.e. =PERCENTILE (array, k)

PERCENTILE Example 2-4

i.e. =PERCENTILE.INC(H6:H20,0.90) Here, the score data is present in the range (H6 to H20) for which we need to apply PERCENTILE.INC function

To enter Array argument, click inside cell H6 and you’ll see the cell selected, then Select the cells till H20. So that column range will get selected, i.e. H6:H20

K, it is the percentile value we are looking for. Here I need to find out the value for the 90th percentile. So, I will use “0.90” as the percentile value. (K is any percentage expressed as a decimal, i.e. 0.90 for 90%) Click ok.

PERCENTILE Example 2-5

after entering both the arguments. =PERCENTILE.INC(H6:H20,0.90), i.e. returns the score for the 90th percentile, i.e. 95.6 as a result in the cell J8. 90th percentile falls between 95 & 96. Excel has interpolated between 95 to 96 score to produce the result of 95.6

PERCENTILE Example 2-6

Things to Remember

The array argument can also be entered as an individual number in the below-mentioned format in the percentile function.

=PERCENTILE({6,8,10,12}, 0.35)

If nth_percentile or k value is not a numeric value (Non-numeric), then the PERCENTILE function will return the #VALUE! error.

If nth_percentile or k value is less than 0 or greater than 1, then the PERCENTILE function will return the #NUM! error.

If the supplied array argument is empty, then also #NUM! error occurs

Recommended Articles

This has been a guide to the Excel PERCENTILE function. Here we discuss the PERCENTILE Formula and how to use the PERCENTILE function in Excel along with practical examples and a downloadable excel template. You can also go through our other suggested articles –

  1. AGGREGATE Function in Excel
  2. Calculate Percentage Increase in Excel
  3. Excel Percentage Difference
  4. Excel Evaluate Formula

Понравилась статья? Поделить с друзьями:
  • What is parameters in excel
  • What is parallel word structure
  • What is paragraph spacing in word
  • What is paragraph marks in word
  • What is page layout in word