Ranking Multiple Data Sets

joeyjoejoejnr

New Member
Joined
Jun 9, 2016
Messages
10
I'm struggling to explain this but I will try. I'm looking to rank player scores from multiple basketball divisions that all lie within one column.

First NameLast NameDivisionPointsRanking
JimAdams1055(2)
JoeStephens914(3)
JohnJones845(1)
DerekSmith987(1)
ChrisWhite754(2)
FredBrown787(1)
DaveNerk941(2)
DougDobbin1067(1)
GregJohnson818(2)

<tbody>
</tbody>


So as you can see there are 4 player divisions and I need a formula to be able to rank the players based on their associated division.
The data will be unsorted and there is likely to be about 400 player entries across the 4 division.
It will also be quite likely to have multiple players on the same score.
(The data in the brackets are the answers the formula should return - ... yes, captain obvious)

Any thoughts people?

I greatly appreciate all of your expertise :)
- Joe
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Can you not sort the sheet by Division Lowest to Highest then Points Highest to lowest to place all of the Divisions together? then add the following Formula looks like it provides what you need.. I am sure there are better ways, but this seems to work.

Code:
=IF(D2<>D1,"1",IF(E2<>E1,F1+1,F1))

First NameLast NameDivisionPointsRanking
FredBrown787 1
ChrisWhite754 2
JohnJones845 1
GregJohnson818 2
DerekSmith987 1
DaveNerk987 1
JoeStephens914 2
DougDobbin1067 1
JimAdams1055 2

<tbody>
</tbody>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,370
Members
449,080
Latest member
Armadillos

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