Formula Help!!

Tom and Rons Pools

New Member
Joined
Apr 23, 2020
Messages
21
Office Version
  1. 365
Platform
  1. Windows
I have set up a ranking system for my category and then used a formula to assign each a point total. However the points are coming in reverse order.

Here is my spreadsheet and I will show the formulas below:

TeamGoalsRankRoto
1​
13​
3​
3.5​
2​
13​
3​
3.5​
3​
22​
1​
1​
4​
14​
2​
2​
5​
11​
5​
5​
6​
8​
7​
7​
7​
9​
6​
6​
8​
3​
10​
10.5​
9​
4​
9​
9​
10​
5​
8​
8​
11​
3​
10​
10.5​
12​
1​
12​
12​

The rank is correct and here is the formula I used: =RANK(B2,$B$2:$B$13)

Here is the formula under root column but the points are assigning in the wrong order: =IF(COUNTIF($C$2:$C$13,C2)>1,((C2-1)+(C2+(COUNTIF($C$2:$C$13,C2))))/2,C2)

The points should be the person who has the most goals gets the 12 and so on.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
You can directly set the point by rank using third argument!
=RANK.AVG(B2,$B$2:$B$13,1)
 
Upvote 0
Maybe
+Fluff 1.xlsm
ABCD
1TeamGoalsRankRoto
2113310.5
3213310.5
4322112
5414211
651158
76876
87967
983103.5
109494
1110585
12113103.5
13121121
Main
Cell Formulas
RangeFormula
C2:C13C2=RANK(B2,$B$2:$B$13)
D2:D13D2=IF(COUNTIF($C$2:$C$13,C2)>1,13-C2+1/COUNTIF($C$2:$C$13,C2),13-C2)


Although I don't understand why the 2 teams ranked 3rd woulf get 10.5 points rather than 9.5
 
Upvote 0
Maybe
+Fluff 1.xlsm
ABCD
1TeamGoalsRankRoto
2113310.5
3213310.5
4322112
5414211
651158
76876
87967
983103.5
109494
1110585
12113103.5
13121121
Main
Cell Formulas
RangeFormula
C2:C13C2=RANK(B2,$B$2:$B$13)
D2:D13D2=IF(COUNTIF($C$2:$C$13,C2)>1,13-C2+1/COUNTIF($C$2:$C$13,C2),13-C2)


Although I don't understand why the 2 teams ranked 3rd woulf get 10.5 points rather than 9.5
Thank you. This worked great!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0
Maybe
+Fluff 1.xlsm
ABCD
1TeamGoalsRankRoto
2113310.5
3213310.5
4322112
5414211
651158
76876
87967
983103.5
109494
1110585
12113103.5
13121121
Main
Cell Formulas
RangeFormula
C2:C13C2=RANK(B2,$B$2:$B$13)
D2:D13D2=IF(COUNTIF($C$2:$C$13,C2)>1,13-C2+1/COUNTIF($C$2:$C$13,C2),13-C2)


Although I don't understand why the 2 teams ranked 3rd woulf get 10.5 points rather than 9.5
I just realized you are actually right. It should be 9.5 and not 10.5. Now I'm not sure how to handle.
 
Upvote 0
In that case how about
+Fluff 1.xlsm
ABCD
1TeamGoalsRankRoto
211339.5
321339.5
4322112
5414211
651158
76876
87967
983102.5
109494
1110585
12113102.5
13121121
Summary
Cell Formulas
RangeFormula
C2:C13C2=RANK(B2,$B$2:$B$13)
D2:D13D2=13-RANK.AVG(C2,$C$2:$C$13,1)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

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