[Solved] Help creating a rank by, then formula

darren.stone65

New member
Hello everyone I have tried in vain to solve this on my own without luck, here's hoping one of you clever people can help!
I have attached my sample for you to look at. thanks in advance.

NameScoreback 6back 3back 1RankRank should be
John 26135166
Howard 26116057
Kevin 26145325
Declan 26148422
Darren27125211
Jim 26148323
Fionn26148124
How do I rank the above table, firstly by Score, then if tied by back 6, then if tied by back 3 then if tied by back 1. I have used Rankeq and countifs but can only make it work on score then back 6. the ranking should be as in column G
 

Attachments

Hello Darren,

You can rank your table by Score, then Back 6, then Back 3, then Back 1 (all as tiebreakers, in order) using a single formula with SUMPRODUCT.

Formula:
=1
+SUMPRODUCT(($B$2:$B$8>B3)
+($B$2:$B$8=B3)*($C$2:$C$8>C3)
+($B$2:$B$8=B3)*($C$2:$C$8=C3)*($D$2:$D$8>D3)
+($B$2:$B$8=B3)*($C$2:$C$8=C3)*($D$2:$D$8=D3)*($E$2:$E$8>E3))
  • The formula compares each row’s Score, then breaks ties with Back 6, then Back 3, then Back 1, just as you wanted.
  • It counts how many rows are ranked ahead of the current row, then adds 1 to give the final rank.

1753543251033.png
 

Online statistics

Members online
0
Guests online
265
Total visitors
265

Forum statistics

Threads
439
Messages
1,945
Members
1,279
Latest member
GPT-Nederlands
Back
Top