Rank and Round Together

RunRabbit13

New Member
Joined
Aug 29, 2014
Messages
12
Is it possible in the same formula to Rank and Round together? I have the following formula but it is returning #N/A. I assume this is because the whole reference is not rounded which leads me to believe this is not possible to do in one step. However, I thought someone may know of a workaround that I cannot think of.

RANK.EQ(ROUND(A1,2),$A$1:$A$17,0)

Thanks!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Is it possible in the same formula to Rank and Round together? I have the following formula but it is returning #N/A. I assume this is because the whole reference is not rounded which leads me to believe this is not possible to do in one step. However, I thought someone may know of a workaround that I cannot think of.

RANK.EQ(ROUND(A1,2),$A$1:$A$17,0)

Thanks!

I recieved NA for this as well, does the rounded value match a value in the range? because i believe it should be included in the range or else the formula can't rank them.
You could try this:


Excel 2010
KL
71.23
81.43
91.63
1022
1131
Sheet5
Cell Formulas
RangeFormula
L7=SUMPRODUCT((ROUND(K7,2)<=ROUND(K7:K11,0))/COUNTIF($K$7:$K$11,$K$7:$K$11))




you would want your formula to probably say
=SUMPRODUCT((ROUND($A1,2)<=ROUND($A$1:$A17,2))/COUNTIF($A$1:$A17,$A$1:$A17))

NOTE: when using the sumproduct ranking formula if you have duplicate values it will not skip the rank
For Example:
normal formula results for ties 1, 2, 2, 2 ,5
sumproduct rank results for ties 1, 2, 2, 2, 3
 
Last edited:
Upvote 0
This is great! I knew there had to be a way to accomplish it. Thank you for taking the time and the solution.
 
Upvote 0

Forum statistics

Threads
1,214,394
Messages
6,119,263
Members
448,881
Latest member
Faxgirl

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top