# PERCENTRANK.EXC

## Content

This function returns the rank of a value in a data set as a percentage (0..1, exclusive) of the data set.

## Syntax

`PERCENTRANK.EXC(array, n, [sigdig])`

## Arguments

This function has these arguments:

| Argument | Description |
| -------- | ----------- |
| *array* | [Required] Array of data with numeric values that defines the relative ranking |
| *n* | [Required] Value for which you want to find the rank in percentage |
| *sigdig* | [Optional] Number of significant digits for the ranked percentage value; if omitted, the calculation used three significant digits |

## Remarks

If *array* is empty, this function returns the #NUM! error value. If *sigdig* < 1, this function returns the #NUM! error value.

## Examples

`PERCENTRANK.EXC(A1:A12,0.95)`
`PERCENTRANK.EXC(R1C1:R1C45,0.866)`
`PERCENTRANK.EXC(A1:A17,23,3)`
`PERCENTRANK.EXC(R1C1:R43:C1,255.4,2)`
`PERCENTRANK.EXC({10,12,13,14,14,14.5,16,17.5,17.75,20,22},18,1)` gives the result 0.7