Scoresheet help

spoonful

New Member
Joined
Nov 10, 2016
Messages
1
Hi! I don't really have a solid background in Excel, so please bear with me. I'm planning to host a sports ranking prediction game and I'm currently having some difficulty finding the appropriate Excel function/s for my scoresheet.

The point system goes like this:

2 points - correctly guessing the exact placement of a player
1 point - guessing the rank to be ±1 place away from the exact placement (Example: Westbrook got a No. 3 ranking. Prediction game participant predicted him to be No. 2 or 4.)
0.5 point - guessing the rank to be ±2 places away from the exact placement (Example: Curry got a No. 7 ranking. Prediction game participant predicted him to be No. 5 or 9.)

Let's assume this is the Top 10 in order:

1. LeBron James
2. Kevin Durant
3. Anthony Davis
4. Stephen Curry
5. Kawhi Leonard
6. Chris Paul
7. Russell Westbrook
8. Karl-Anthony Towns
9. Paul George
10. Klay Thompson
11. Jimmy Butler*
12. James Harden*

*Note: Only the Top 10 is up for prediction.


These are the sample entries encoded in an Excel scoresheet matrix:

Excel 2010
ABCDEFGHIJKLMNO
1ParticipantsENTRIESExact Rank Score±1 Deviation Score±2 Deviation ScoreTotal
212345678910
3RedJamesLeonardDurantTownsWestbrookLeonardPaulCurryTownsHarden
4BlueDurantWestbrookPaulJamesCurryTownsLeonardGeorgeThompsonDavis
5YellowCurryDurantJamesLeonardCurryPaulDavisWestbrookButlerTowns
6GreenJamesTownsPaulCurryHardenDurantWestbrookThompsonGeorgeLeonard
7OrangeDavisJamesTownsButlerDurantCurryWestbrookThompsonLeonardGeorge

<tbody>
</tbody>
Sample Entries Matrix

Excel 2010
AB
11LeBron James
22Kevin Durant
33Anthony Davis
44Stephen Curry
55Kawhi Leonard
66Chris Paul
77Russell Westbrook
88Karl-Anthony Towns
99Paul George
1010Klay Thompson
1111Jimmy Butler*
1212James Harden*
13
14
15
16*Note: Only the Top 10 is up for prediction.

<tbody>
</tbody>
Hypothetical Top 12



Your help will be very much appreciated. Suggestions to better execute the tabulation would be greatly welcome. Thank you very much!
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
this solution use a helper table in rows 22-26, also with players' surnames in C1-C12


Excel 2012
ABCDEFGHIJKLMNOP
11LeBron JamesJames
22Kevin DurantDurant
33Anthony DavisDavis
44Stephen CurryCurry
55Kawhi LeonardLeonard
66Chris PaulPaul
77Russell WestbrookWestbrook
88Karl-Anthony TownsTowns
99Paul GeorgeGeorge
1010Klay ThompsonThompson
1111Jimmy Butler*Butler*
1212James Harden*Harden*
13
14ParticipantsENTRIESExact Rank Score1 Deviation Score2 Deviation ScoreTotal
1512345678910
16RedJamesLeonardDurantTownsWestbrookLeonardPaulCurryTownsHarden1416.5
17BlueDurantWestbrookPaulJamesCurryTownsLeonardGeorgeThompsonDavis0425
18YellowCurryDurantJamesLeonardCurryPaulDavisWestbrookButlerTowns2328
19GreenJamesTownsPaulCurryHardenDurantWestbrookThompsonGeorgeLeonard4018.5
20OrangeDavisJamesTownsButlerDurantCurryWestbrookThompsonLeonardGeorge1235.5
21
221528756480
2327614859103
244215463708
2518640271095
2631802471059
Sheet1
Cell Formulas
RangeFormula
P16=2*M16+N16+0.5*O16
C22=IFERROR(INDEX($A$1:$A$10,MATCH(C16,$C$1:$C$10,0)),0)
M16{=SUM(IF($A$1:$A$10=TRANSPOSE($C22:$L22),1))}
N16{=SUM(IF(ABS($A$1:$A$10-TRANSPOSE($C22:$L22))=1,1))}
O16{=SUM(IF(ABS($A$1:$A$10-TRANSPOSE($C22:$L22))=2,1))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Last edited:
Upvote 0
Cross-posted here: Scoresheet help

Please take a minute to read the forum rules, especially as they relate to cross-posting, and abide by them in future. Thanks. :)
 
Upvote 0

Forum statistics

Threads
1,215,521
Messages
6,125,305
Members
449,218
Latest member
Excel Master

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