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

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
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

Forum statistics

Threads
1,225,739
Messages
6,186,738
Members
453,369
Latest member
juliewar

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