Rank with Criteria and 2 tie breaks

Bazza1979

New Member
Joined
Apr 17, 2015
Messages
6
HI

I'm looking for some help with a rank issue I'm having.

I need a formula that will rank based on a criteria (Area) and uses 2 tie breaks. So for example if the are 2 scores of that match in Central England then %1 would determine the highest rank, if the score and %1 match the %2 would determine the highest rank. I have a formula that works for the criteria and %1 as a tie break and another that uses 2 tie breaks but I can't seems to figure out how to combine them.

Any help would be great.

I've added a table below that outlines the desired results but if I've not been clear please ask

RankAreaScore%1%2
1North West21850.00%50.00%
2North West13133.33%66.67%
1Central England780.00%100.00%
2Central England68100.00%100.00%
3Central England68100.00%33.33%
3North West5828.57%75.00%
4Central England50100.00%100.00%
5Central England4628.57%42.86%
6Central England450.00%0.00%
4North West5825.00%50.00%

<tbody>
</tbody>

Thank you
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Maybe something like this?

ABCDEF
1RankAreaScore1%2%rank
21North West21850.00%50.00%1
32North West13133.33%66.67%2
41Central England780.00%100.00%3
52Central England68100.00%100.00%4
63Central England68100.00%33.33%5
73North West5828.57%75.00%6
84Central England50100.00%100.00%8
95Central England4628.57%42.86%9
106Central England450.00%0.00%10
114North West5825.00%50.00%7

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet3

Array Formulas
CellFormula
F2{=SUM(IF($C$2:$C$11+$D$2:$D$11/100+$E$2:$E$11/10000>=C2+D2/100+E2/10000,1))}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0
Hi Eric

Thanks for the response however your suggestion doesn't take into account the area. The rankings I included in my example data are the results I would like to see.

Any ideas?

Thanks
 
Upvote 0
In that case:

=SUM(IF(($C$2:$C$11+$D$2:$D$11/100+$E$2:$E$11/10000>=C2+D2/100+E2/10000)*($B$2:$B$11=B2),1))
with Control+Shift+Enter.
 
Upvote 0
You could also try this standard-entry formula, copied down.

Excel Workbook
ABCDE
1RankAreaScore1%2%
21North West21850.00%50.00%
32North West13133.33%66.67%
41Central England780.00%100.00%
52Central England68100.00%100.00%
63Central England68100.00%33.33%
73North West5828.57%75.00%
84Central England50100.00%100.00%
95Central England4628.57%42.86%
106Central England450.00%0.00%
114North West5825.00%50.00%
Rank
 
Upvote 0

Forum statistics

Threads
1,215,332
Messages
6,124,313
Members
449,152
Latest member
PressEscape

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