Forum

Notifications
Clear all

Rank - Tiebreaker

5 Posts
3 Users
0 Reactions
209 Views
(@mymalone)
Posts: 103
Estimable Member
Topic starter
 

I am trying to figure out the formula for breaking a tie.

Can you help?

Thanks

 
Posted : 16/11/2017 1:56 pm
(@fravis)
Posts: 337
Reputable Member
 

I assume you want to use something to present a sorting order even with ties in the scores?

If so: you have to add a very little number 'behind the scenes' to the results, so Excel can sort them. This is mostly done by taking the rownumber and divide that with 1000 or such. 

If this is what you are looking for we probably can provide you an example.

Frans

 
Posted : 16/11/2017 2:40 pm
(@mymalone)
Posts: 103
Estimable Member
Topic starter
 

yes please.

 
Posted : 16/11/2017 3:58 pm
(@fravis)
Posts: 337
Reputable Member
 

I'll come back on this in one or two days from now, sorry but I'm a bit busy at the moment.

 
Posted : 17/11/2017 6:06 pm
(@jonpeltier)
Posts: 9
Active Member
 

Suppose my scores with duplicates are in B3:B19. I can get simple ranks if in C3:C19 I use the formula

=RANK(B3,B$3:B$19)

But duplicate scores will have the same rank, and then the next rank number will be unused.

You can use a simple modification to the formula, without adding a "small" value (because what you thought was a small enough value might not be if the values all become very small):

=RANK(B3,B$3:B$19)+COUNTIF(B$3:B3,B3)-1

The COUNTIF adds 1 each time the value in column B occurs in that row or higher in the list. You need to subtract 1 because COUNTIF adds 1 for the first occurrance.

 
Posted : 18/11/2017 9:52 am
Share: