Forum Discussion
How to RANK, but changing the number of components being ranked automatically
- Sep 30, 2019
hi rick01
You can use offset() function to manage cell ranges. I have used below formula in attached sample file.
=IFERROR(RANK(B3,OFFSET($B$3:$B$196,0,0,$E$4,1)),"")
Input required row number in E4 and let men know if is works as desired.
Thanks
Tauqeer
hi rick01
You can use offset() function to manage cell ranges. I have used below formula in attached sample file.
=IFERROR(RANK(B3,OFFSET($B$3:$B$196,0,0,$E$4,1)),"")
Input required row number in E4 and let men know if is works as desired.
Thanks
Tauqeer
- rick01Oct 02, 2019Copper Contributor
Hi tauqeeracma
Thanks for your previous help....I am just trying to apply the same logic to a PERCENTRANK.EXC, but am having trouble getting it to work - could you possibly help me on that as well?
The formula I am trying to adapt is:
=((PERCENTRANK.EXC($I$3:$I$104,I4)))*10
again I would like to replace I104 with E4 (the cell that contains the column length)
I have tried:
=IFNA(PERCENTRANK.EXC(I4,OFFSET($I$3:$I$1500,0,0,$E$1,1)),””)
Very much appreciated, if you can help. Thx
- tauqeeracmaOct 02, 2019Iron Contributor
HI rick01
Please try below formula, hope it will work.
=IFNA(((PERCENTRANK.EXC(OFFSET($I$3:$I$106,0,0,$E$1,1),I4)))*10,"")
Thanks,
Tauqeer
- rick01Oct 02, 2019Copper Contributor
Excellent....thank you so much! tauqeeracma
- rick01Oct 02, 2019Copper Contributor
Great - works perfectly! You saved me a lot of time !
- tauqeeracmaOct 02, 2019Iron ContributorYou’re welcome