PERCENTRANK.INC function - The function returns the rank of a value in a dataset as a percentage including values 0 and 1 in Excel
The following article introduces you to PERCENTRANK.INC - one of the functions in the group of statistical functions that is very popular in Excel.
Description: The function returns the rank of a value in a dataset as a percentage including both values 0 and 1. The function supports Excel 2010 and later versions.
Syntax: PERCENTRANK.INC (array, x, [significance])
Inside:
- array: An array or range of data to determine percentile, which is a required parameter .
- x: The value you want to determine its rank in the dataset, is a required parameter.
- significance: The value determines the number of digits of the percentage value returned, which is an optional parameter, if omitted the default is 3 digits.
Attention:
- If array array value is empty -> the function returns the #NUM! Error value .
- If significance value <1 -> the function returns the #NUM! Error value
- If x does not match any value of the array -> interpolation function to determine the rank of the value.
For example:
Find the rank of the values described in the data table below:
- Calculate the rank of the value 12 in the array. In the cell to calculate enter the formula : = PERCENTRANK.INC (E6: K6, E7)
- Press Enter -> rank of value 12 in the dataset is:
- Calculate the rank of the value 26. In the cell to calculate enter the formula: = PERCENTRANK.INC (E6: K6, E8) -> press Enter -> rank is:
Thus, the case with a rank of PERCENTRANK.INC is still calculated normally.
- Calculate the rank of the value 11. In the cell to calculate enter the formula: = PERCENTRANK.INC (E6: K6, E9) -> press Enter -> rank is:
In case the value 11 is not in the value array but it is in the range from 9 to 12 -> the function still calculates normally.
Above are instructions and some specific examples when using PERCENTRANK.INC function in Excel.
Good luck!
You should read it
- QUARTILE.INC function - The function returns the quartile of a dataset including values 0 and 1 in Excel
- RANK.EQ function - Function returns the rank of a number in a list of numbers, returns the highest rank when multiple values with the same rank in Excel
- RANK.AVG function - The function returns the rank of a number in a list of numbers in Excel
- QUARTILE.EXC function - The function returns the quartile of a dataset without values 0 and 1 in Excel
- TRIMMEAN function - The function returns the average of the inner part of a dataset in Excel
- QUARTILE function - The function returns the quartile of a dataset in Excel
- LARGE function - The function returns the kth largest value in a dataset in Excel
- KURT function - The function returns the sharp coefficient of a dataset in Excel
May be interested
- MAXA function - The function returns the largest value in a set of values including text and logical values in Excelmaxa function: the function returns the largest value in a set of values including text and logical values. syntax: maxa (value1, [value2], ...)
- MODE.MULT function - The function returns a vertical array of the most common values in Excelmode.mult function: the function returns a vertical array of the most frequently occurring values, or repeating values in an array or data range. support functions from excel 2010 onwards. syntax: mode.mult ((number1, [number2], ...)
- MINA function - The function returns the smallest value in the given numbers including text and logical values in Excelmina function: the function returns the smallest value in the given numbers including text and logical values. syntax: mina (value1, [value2], ...)
- How to rank on Excel with RANK functionto rank on excel we will use the rank function. you can rank in ascending or descending order according to your needs.
- AVERAGEA function - The function returns the average of the arguments including numeric, text, and logical values in Excelaveragea function: the function returns the average of the arguments including numeric, text, and logical values. syntax: averagea (value1, [value2], ...)
- SMALL function - The function returns the kth smallest value in a dataset in Excelsmall function: the function returns the kth smallest value in a dataset. syntax: small (array, k)
- The use of the RANK function in excelthe rank function is a relatively common function and is widely used in the office world, and especially by accountants. so, what's the rank function for?
- MAX function - The function returns the largest value in a set of values in Excelmax function: the function returns the largest value in the set of values. syntax: max (number1, [number2], ...)
- STDEV.P function - The function returns the standard deviation based on the whole in Excelstdev.p: the function returns the standard deviation based on the whole population, ignoring logical values and text. standard deviation is a measure of the dispersion of values against the mean. support functions from excel 2010 onwards. syntax: stdev.p (number1, [number2] ,.
- How to calculate the percentage change in Pivot Table in Excelalthough the main function of a pivottable is to summarize large data, you can use them to calculate the percentage change between values.