Score Prediction Template

DavidMoran

New Member
Joined
Nov 22, 2017
Messages
12
I am trying to make a sports prediction quiz. I would like the scoring to be
Margin
Points
Draw
40
Winner
20
Exact
10
1
9
2
8
3
7
4
6
5
5
6
4
7
3
8
2
9
1

<tbody>
</tbody>

The selection will be pick, winner, or draw and the points margin of victory e.g
Prediction
Margin
Joe
Team 1
3
Pat
Draw
0
Mary
Team 2
5

<tbody>
</tbody>

Example: the Team 1 beat Team 2 by 3 points. Therefore Joe gets 20 points for picking winner and an extra 3 for correct points margin

Example 2: The teams draw, therefore Pat gets 40 points

Example 3, Team 2 wins by 4. Therefore Mary gets 20 point only

Many thanks
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
what is the significance of the RED below?

and if correctly picked the margin, say 5 pts, what's the extra?

I am trying to make a sports prediction quiz. I would like the scoring to be
MarginPoints
Draw40
Winner20
Exact10
19
28
37
46
55
64
73
82
91

<tbody>
</tbody>

The selection will be pick, winner, or draw and the points margin of victory e.g
PredictionMargin
JoeTeam 13
PatDraw0
MaryTeam 25

<tbody>
</tbody>

Example: the Team 1 beat Team 2 by 3 points. Therefore Joe gets 20 points for picking winner and an extra 3 for correct points margin

Example 2: The teams draw, therefore Pat gets 40 points

Example 3, Team 2 wins by 4. Therefore Mary gets 20 point only

Many thanks
 
Upvote 0
If a team wins by 5 and they correctly pick 5, they get an extra 5 on top of the 20 for picking the correct winning team. If a team wins by 2 and they correctly pick 2, they get an extra 8 on top of the 20. In essence, the tighter the margin the higher the extra points
Thanks

what is the significance of the RED below?

and if correctly picked the margin, say 5 pts, what's the extra?
 
Upvote 0
If a team wins by 5 and they correctly pick 5, they get an extra 5 on top of the 20 for picking the correct winning team. If a team wins by 2 and they correctly pick 2, they get an extra 8 on top of the 20. In essence, the tighter the margin the higher the extra points
Thanks

I am trying to make a sports prediction quiz. I would like the scoring to be
MarginPoints
Draw40
Winner20
Exact10
19
28
37
46
55
64
73
82
91

<tbody>
</tbody>

The selection will be pick, winner, or draw and the points margin of victory e.g
PredictionMargin
JoeTeam 13
PatDraw0
MaryTeam 25

<tbody>
</tbody>

Example: the Team 1 beat Team 2 by 3 points. Therefore Joe gets 20 points for picking winner and an extra 3 for correct points margin

Example 2: The teams draw, therefore Pat gets 40 points

Example 3, Team 2 wins by 4. Therefore Mary gets 20 point only

Many thanks

ok, just to clarify, shouldn't Joe gets 20 + 7 points?

what about the 10 points for Exact?
 
Last edited:
Upvote 0
what about the 10 points for Exact?

I am trying to make a sports prediction quiz. I would like the scoring to be
MarginPoints
Draw40
Winner20
Exact10
19
28
37
46
55
64
73
82
91

<tbody>
</tbody>

The selection will be pick, winner, or draw and the points margin of victory e.g
PredictionMargin
JoeTeam 13
PatDraw0
MaryTeam 25

<tbody>
</tbody>

Example: the Team 1 beat Team 2 by 3 points. Therefore Joe gets 20 points for picking winner and an extra 3 for correct points margin

Example 2: The teams draw, therefore Pat gets 40 points

Example 3, Team 2 wins by 4. Therefore Mary gets 20 point only

Many thanks
 
Upvote 0
try this, not taking into the account of the 10 points for Exact


Excel 2013/2016
ABCD
1MarginPoints
2Draw40
3Winner20
4Exact10
519
628
737
846
955
1064
1173
1282
1391
14
15Result
16Team 17
17Team 24
18
19PredictionMarginPoints
20JoeTeam 1327
21PatDraw00
22MaryTeam 250
Sheet1
Cell Formulas
RangeFormula
D20=IFERROR(IF(LOOKUP(B20,$A$16:$A$17,$B$16:$B$17)>MIN($B$16:$B$17), 20+IF(ABS($B$16-$B$17)=C20,10-C20,0),0),IF($B$16=$B$17,40,0))
 
Last edited:
Upvote 0
try this, not taking into the account of the 10 points for Exact

Excel 2013/2016
ABCD
1MarginPoints
2Draw40
3Winner20
4Exact10
519
628
737
846
955
1064
1173
1282
1391
14
15Result
16Team 17
17Team 24
18
19PredictionMarginPoints
20JoeTeam 1327
21PatDraw00
22MaryTeam 250

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
D20=IFERROR(IF(LOOKUP(B20,$A$16:$A$17,$B$16:$B$17)>MIN($B$16:$B$17),
20+IF(ABS($B$16-$B$17)=C20,10-C20,0),0
),IF($B$16=$B$17,40,0)
)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Thank you
If it is exact, its 20 for the win and the extra 10 for exact points margin
 
Upvote 0
another way with scores picked


Excel 2013/2016
ABCD
1Result
2Team 1Team 2
327
4
5Prediction
6Team 1Team 2Points
7Joe400
8Pat220
9Mary3825
Sheet1
Cell Formulas
RangeFormula
D7=IF(AND(B7=C7,$B$3=$C$3),40,IF(OR(AND(B7>C7,$B$3>$C$3),AND(C7>B7,$C$3>$B$3)),20,0)) +IF(AND(B7=$B$3,C7=$C$3),10,IF(AND((B7-C7)=($B$3-$C$3),B7<>C7),10-ABS(B7-C7),0))



Excel 2013/2016
ABCD
1Result
2Team 1Team 2
322
4
5Prediction
6Team 1Team 2Points
7Joe400
8Pat2250
9Mary380
Sheet1
Cell Formulas
RangeFormula
D7=IF(AND(B7=C7,$B$3=$C$3),40,IF(OR(AND(B7>C7,$B$3>$C$3),AND(C7>B7,$C$3>$B$3)),20,0)) +IF(AND(B7=$B$3,C7=$C$3),10,IF(AND((B7-C7)=($B$3-$C$3),B7<>C7),10-ABS(B7-C7),0))



Excel 2013/2016
ABCD
1Result
2Team 1Team 2
352
4
5Prediction
6Team 1Team 2Points
7Joe4127
8Pat220
9Mary380
Sheet1
Cell Formulas
RangeFormula
D7=IF(AND(B7=C7,$B$3=$C$3),40,IF(OR(AND(B7>C7,$B$3>$C$3),AND(C7>B7,$C$3>$B$3)),20,0)) +IF(AND(B7=$B$3,C7=$C$3),10,IF(AND((B7-C7)=($B$3-$C$3),B7<>C7),10-ABS(B7-C7),0))



Excel 2013/2016
ABCD
1Result
2Team 1Team 2
351
4
5Prediction
6Team 1Team 2Points
7Joe4120
8Pat220
9Mary150
Sheet1
Cell Formulas
RangeFormula
D7=IF(AND(B7=C7,$B$3=$C$3),40,IF(OR(AND(B7>C7,$B$3>$C$3),AND(C7>B7,$C$3>$B$3)),20,0)) +IF(AND(B7=$B$3,C7=$C$3),10,IF(AND((B7-C7)=($B$3-$C$3),B7<>C7),10-ABS(B7-C7),0))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,426
Messages
6,124,829
Members
449,190
Latest member
rscraig11

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