PERCENTRANKINC

Calculates the inclusive percentage rank of a value within a dataset to determine its relative position among other values.

The PERCENTRANKINC function returns the percentage rank of a value within a dataset using the inclusive method. It indicates the relative position of a value compared to other values and includes both the minimum and maximum values in the calculation.

PERCENTRANK is the legacy version of the PERCENTRANKINC function and works similarly. It can be used in place of PERCENTRANKINC for inclusive percentage rank calculations.

Syntax#

PERCENTRANKINC(array, x, [significance])

Arguments#

The PERCENTRANKINC function syntax has the following arguments:

  • array: The range or list of numeric values. Required.
  • x: The value for which you want to calculate the percentage rank. Required.
  • significance: The number of significant digits for the result. Optional.

The result ranges from 0 to 1 (inclusive), where 0 represents the minimum value in the dataset and 1 represents the maximum value.

Example#

PERCENTRANKINC(10,20,30,40,50, 10)
// Returns 0
PERCENTRANKINC(10,20,30,40,50, 30)
// Returns 0.5
PERCENTRANKINC(10,20,30,40,50, 50)
// Returns 1

You can use the PERCENTRANKINC function to determine the relative standing of a value within a dataset for metrics such as sales, revenue, or performance scores.

  • If the value being ranked is less than the minimum in the specified array, the PERCENTRANKINC function returns 0.
  • If the value being ranked is greater than the maximum in the specified array, the function returns a #ERR error.

PERCENTRANKINC

We used the SELECT function to select a range of columns from 1 to 4 for the 'Revenue' measure (2022 Revenue - 2025 Revenue)

Excel Equivalent#

PERCENTRANKINC

FAQs#

Q1. How is PERCENTRANKINC calculated?

PERCENTRANKINC is calculated by determining the relative position of a value within a sorted dataset using the inclusive method, which includes both the minimum and maximum values in the calculation.

PERCENTRANKINC = (r-1) / (n-1)​

Where:

  • r = rank position of the value in the sorted dataset
  • n = number of values in the dataset

If the value does not exactly match an existing value, the result is obtained by interpolating between the surrounding values.

It returns a value between 0 and 1 (inclusive) representing the relative standing of the value in the dataset.

Enterprise planning, Integrated with PowerTable and Intelligence, native to Microsoft Fabric. Co Engineered with Lumel.
BUILT ON