Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula. Way over my head

I have the task of manually filling in the results from rugby matches in a
spread sheet for a works guessing game. Please could someone help with a
formula to do the following and show the final score in column L2. I just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score draw 10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win). The
only exception is when a bonus point for correct margin is awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default Formula. Way over my head

If I have understood the "rules" ... try this:

in L2:

=IF(AND(B2=C2,B2=I2),10,IF(AND(B2=I2,C2=J2),8,IF(A ND(B2=C2,B2<I2),5,IF(OR(B2=I2,C2=J2),3,IF(C2B2,2 ,1)))))

in M2 (bonus point)

=IF(ABS(B2-C2)-ABS(I2-J2)<=10,1,0)

In N2

=L2+M2

I wasn't sure about "Correct winning/losing score 3 points" ... did you
mean predicting either the score of winners OR score of the losers?

And you don't need columns F,G,H or K for the calculation but I have assumed
that they are present.

And what are the E points?

HTH

"Hicksey" wrote:

I have the task of manually filling in the results from rugby matches in a
spread sheet for a works guessing game. Please could someone help with a
formula to do the following and show the final score in column L2. I just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score draw 10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win). The
only exception is when a bonus point for correct margin is awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula. Way over my head



Hi Toppers
Thank you for responding

I wasn't sure about "Correct winning/losing score 3 points" ... did you
mean predicting either the score of winners OR score of the losers?
Yes that is what I meant

And what are the E points?
These are the points won by the teams playing not the points won by the
guessers.

Would it help if I sent you the spreadsheet?
Regards
Paul

"Toppers" wrote in message
...
If I have understood the "rules" ... try this:

in L2:

=IF(AND(B2=C2,B2=I2),10,IF(AND(B2=I2,C2=J2),8,IF(A ND(B2=C2,B2<I2),5,IF(OR(B2=I2,C2=J2),3,IF(C2B2,2 ,1)))))

in M2 (bonus point)

=IF(ABS(B2-C2)-ABS(I2-J2)<=10,1,0)

In N2

=L2+M2

I wasn't sure about "Correct winning/losing score 3 points" ... did you
mean predicting either the score of winners OR score of the losers?

And you don't need columns F,G,H or K for the calculation but I have
assumed
that they are present.

And what are the E points?

HTH

"Hicksey" wrote:

I have the task of manually filling in the results from rugby matches in
a
spread sheet for a works guessing game. Please could someone help with a
formula to do the following and show the final score in column L2. I just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score draw
10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the
actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win).
The
only exception is when a bonus point for correct margin is awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points





  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula. Way over my head

Hi Paul
Thank you for responding.

i dont understand your margin thing say the score in a game is 10-3 the
actual margin is 7 what is your +10-10 on that
17 to -3

I dont actually have to understand the scoring. I only get to fill in the
numbers. Luckey me!
Regards
Paul

"paul" wrote in message
...
i dont understand your margin thing say the score in a game is 10-3 the
actual margin is 7 what is your +10-10 on that
ps I hope you got the right score in the All Blacks vs The Wallabies last
night,looked a bit dodgy at half time.
--
paul

remove nospam for email addy!



"Hicksey" wrote:

I have the task of manually filling in the results from rugby matches in
a
spread sheet for a works guessing game. Please could someone help with a
formula to do the following and show the final score in column L2. I just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score draw
10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the
actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win).
The
only exception is when a bonus point for correct margin is awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 247
Default Formula. Way over my head

one more question.To get three points you have to have either the winners
score or losers score correct AND have picked the wining team correctly?
--
paul

remove nospam for email addy!



"Hicksey" wrote:

Hi Paul
Thank you for responding.

i dont understand your margin thing say the score in a game is 10-3 the
actual margin is 7 what is your +10-10 on that
17 to -3

I dont actually have to understand the scoring. I only get to fill in the
numbers. Luckey me!
Regards
Paul

"paul" wrote in message
...
i dont understand your margin thing say the score in a game is 10-3 the
actual margin is 7 what is your +10-10 on that
ps I hope you got the right score in the All Blacks vs The Wallabies last
night,looked a bit dodgy at half time.
--
paul

remove nospam for email addy!



"Hicksey" wrote:

I have the task of manually filling in the results from rugby matches in
a
spread sheet for a works guessing game. Please could someone help with a
formula to do the following and show the final score in column L2. I just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score draw
10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the
actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win).
The
only exception is when a bonus point for correct margin is awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula. Way over my head

Points System
Home win 1. Away win 2. Correct winning/losing score 3. Draw 5. Correct
game score 8. Correct score draw 10.
Correct margin 1 bonus point Only the highest appropriate points to be
allocated (e.g you cannot be awarded 3 points for correct winning score plus
1 point for home win).The only exception is when a bonus point for correct
margin is awarded In the event of a draw at the end of the season the person
who predicted the final Glaws leaque points most accurately will be declared
the winner.
Fines System
£1 fine, if the margin in any member's forecast is more than ten points
either way of the actual match margin.
Examples of margins
The margin is calculated by deducting the away score from the home score
Glos 24 Worcs 21 (24-21) = margin of 3
Worcs 21 Glos 24 (21-24) = margin of-3

The margin thing is only there to put money in the pot for the eventual
winner.

"paul" wrote in message
...
one more question.To get three points you have to have either the winners
score or losers score correct AND have picked the wining team correctly?
--
paul

remove nospam for email addy!



"Hicksey" wrote:

Hi Paul
Thank you for responding.

i dont understand your margin thing say the score in a game is 10-3 the
actual margin is 7 what is your +10-10 on that
17 to -3

I dont actually have to understand the scoring. I only get to fill in the
numbers. Luckey me!
Regards
Paul

"paul" wrote in message
...
i dont understand your margin thing say the score in a game is 10-3 the
actual margin is 7 what is your +10-10 on that
ps I hope you got the right score in the All Blacks vs The Wallabies
last
night,looked a bit dodgy at half time.
--
paul

remove nospam for email addy!



"Hicksey" wrote:

I have the task of manually filling in the results from rugby matches
in
a
spread sheet for a works guessing game. Please could someone help with
a
formula to do the following and show the final score in column L2. I
just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score
draw
10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the
actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win).
The
only exception is when a bonus point for correct margin is
awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points








  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default Formula. Way over my head

Send to toppers<atjohntopley.fsnet.co.uk and it would help if you could show
some example (expected) results to help checking of the formula.

"Hicksey" wrote:



Hi Toppers
Thank you for responding

I wasn't sure about "Correct winning/losing score 3 points" ... did you
mean predicting either the score of winners OR score of the losers?
Yes that is what I meant

And what are the E points?
These are the points won by the teams playing not the points won by the
guessers.

Would it help if I sent you the spreadsheet?
Regards
Paul

"Toppers" wrote in message
...
If I have understood the "rules" ... try this:

in L2:

=IF(AND(B2=C2,B2=I2),10,IF(AND(B2=I2,C2=J2),8,IF(A ND(B2=C2,B2<I2),5,IF(OR(B2=I2,C2=J2),3,IF(C2B2,2 ,1)))))

in M2 (bonus point)

=IF(ABS(B2-C2)-ABS(I2-J2)<=10,1,0)

In N2

=L2+M2

I wasn't sure about "Correct winning/losing score 3 points" ... did you
mean predicting either the score of winners OR score of the losers?

And you don't need columns F,G,H or K for the calculation but I have
assumed
that they are present.

And what are the E points?

HTH

"Hicksey" wrote:

I have the task of manually filling in the results from rugby matches in
a
spread sheet for a works guessing game. Please could someone help with a
formula to do the following and show the final score in column L2. I just
would not know where to start. Thank you

Points system
Home win 1 point. Away win 2 points. Correct winning/losing score 3
points. Draw 5 points. Correct game score 8 points. Correct score draw
10
points. Correct margin 1 point.( the tolerence of +10 to -10 of the
actual
score.)

Only the highest appropriate points to be allocated (e.g you cannot be
awarded 3 points for correct winning score plus 1 point for home win).
The
only exception is when a bonus point for correct margin is awarded..( the
tolerence of +10 to -10 of the actual score.)

A2 Home Team
B2 Home score
C2 Away score
D2 Away Team
E2 Points
F2 Margin
G2 = F2+10
H2 = F2-10
I2 Home Team Guess
J2 Away Team Guess
K2 Margin
L2 Points






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Simple If formula but can't get my head around it! Cheryl Excel Worksheet Functions 3 July 19th 06 02:32 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Creating a check mark box MarthaSue Setting up and Configuration of Excel 18 April 28th 05 12:31 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 12:46 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"