简体   繁体   中英

Percentile rank of a cell that isn't in an array - EXCEL

I have an array of numbers and would like to see what percentile another cell would be in if it was included in that array. I can't directly do the RANK function because the cell I'm testing isn't in the array. There's a number of cells I'm looking to find the percentile rank for as well.

Perhaps there's a way to select an array AND a separate cell to be included in the Rank function?

You could try using a union of ranges in the second argument of the RANK function, for example:

 =RANK(B1,(A1:A4,B1),1)

If numbers are on a different sheet another option is:

 =COUNTIF(Sheet1!A1:A4,"<"&B1)+1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM