Golf leaderboard duplicates equal scores

The Shadowman

New Member
Joined
May 5, 2021
Messages
34
Office Version
  1. 2019
Platform
  1. Windows
Hi. I have created a golf leaderboard which works fine, but if two people have the same total, one disappears leaving the same person in first and second place.

In the score part of the sheet I have a column that calculates the best score using: =LARGE($BI$31:$BI$45,1) this is copied Down for 15 rows.
The next column takes 15 names and places them in top score order using: =INDEX($C$31:$C$45,MATCH(BN31,$BI$31:$BI$45,0)).
This works well until two players have same score, when the last entered will, in this example, show in first and second place and the true second place disappears.

How can I make it that two equal scores show as first and second, and so on?
I will be extremely grateful for any help offered. Thanks
Robert
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
How about
Excel Formula:
=INDEX($C$31:$C$45,AGGREGATE(15,6,(ROW($C$31:$C$45)-ROW($C$31)+1)/($BI$31:$BI$45=BN31),COUNTIFS(BN$31:BN31,BN31)))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,821
Messages
6,121,759
Members
449,048
Latest member
excelknuckles

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