Help with Golf League Points Calculation

joerenaud

New Member
Joined
Apr 8, 2011
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi There,

Trying to use Excel to eliminate a weekly and mistake-prone hand calculation of our golf league event results and a points calculation. We assign points to where people place and any ties split (or average) the points for the tied spots. (e.g. if two people say tie for third, they split the points for third and forth place) I can get RANK to work pretty well for determining 1st, 2nd, 3rd place etc and it seems handles ties the way we need it. I then tried to use a VLOOKUP to get points from a range of two columns, place finished and points earned. That works until it encounters a tie and now I'm stuck. I've googled this and have seen some simliar points assignment issues for people but some of the recommended approaches to accomplishing this are very different like the use of OFFSET and COUNTIFS. But this all goes over my head pretty quickly.

Am I'm headed down the right path with RANK and VLOOKUP and something else after that? How would you accomplish this? I hope I have provided here the correct data for you all to see in the worksheet.

20221212_mrexcel_example.xlsx
ABCDEFGHIJ
1FlightNameGrossHdcpNetPlace FinishedPoints EarnedPlacePrize
2APlayer 180107011501150
3Player 28497521252125
4Player 387107731003100
5Player 4847773#N/A475
6Player 585778570570
7Player 688979665665
8Player 784480760760
9Player 890981855855
10Player 991883950950
11Player 109488610451045
121140
131235
141330
151425
161520
171615
181710
19185
20190
Net Scores
Cell Formulas
RangeFormula
F2:F11F2=RANK(E2,$E$2:$E$11,1)
G2:G11G2=VLOOKUP(F2,I2:J20,2)


Thank you for your assistance.
 

Attachments

  • 20221212_mrexcel_screenshot.jpg
    20221212_mrexcel_screenshot.jpg
    76 KB · Views: 2

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
How many points should player 3 & 4 get?
 
Upvote 0
How many points should player 3 & 4 get?
They would split the 175 points (100 for third + 75 for fourth) or each would earn 87.5 points. There can be three or even four people tied sometimes. Thank you.
 
Upvote 0
Enter the undernoted formula in G2 and drag down:
Code:
=AVERAGE(OFFSET($J$1,F2,0, COUNTIF($F$2:$F11,F2)))
 
Upvote 0
Another option is
Fluff.xlsm
ABCDEFGHIJ
1FlightNameGrossHdcpNetPlace FinishedPoints EarnedPlacePrize
2APlayer 180107011501150
3Player 28497521252125
4Player 3871077387.53100
5Player 484777387.5475
6Player 585778570570
7Player 688979665665
8Player 784480760760
9Player 890981855855
10Player 991883950950
11Player 109488610451045
121140
131235
141330
151425
161520
171615
181710
19185
20190
Sheet4
Cell Formulas
RangeFormula
F2:F11F2=RANK(E2,$E$2:$E$11,1)
G2:G11G2=AVERAGEIFS(J:J,I:I,">="&F2,I:I,"<="&COUNTIFS(F:F,F2)+F2-1)
 
Upvote 0
Solution
Thank you to both for the solutions. They both work beautifully. Appreciate the prompt responses.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0
After using both versions, I notice one tiny typo in swapnilk's formula:

=AVERAGE(OFFSET($J$1,F2,0, COUNTIF($F$2:$F11,F2)))

It should be: =AVERAGE(OFFSET($J$1,F2,0, COUNTIF($F$2:$F$11,F2))) Or at least that's what I did to use it.

Otherwise there's problems with pasting by dragging down.
 
Upvote 0
One word of warning about that formula, Offset is volatile & so will calaculate far more often than is needed & could cause your workbook to slow down.
 
Upvote 0

Forum statistics

Threads
1,215,655
Messages
6,126,053
Members
449,283
Latest member
GeisonGDC

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