+ Reply to Thread
Results 1 to 5 of 5

Football Predictions - 3 for score, 1 for result

  1. #1
    Registered User
    Join Date
    08-14-2010
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    1

    Football Predictions - 3 for score, 1 for result

    Hi all,

    I was wondering whether someone with more superior excel skills could help me in the correct formula for a football predictions spreadsheet.

    Each week we predict the scores on the premiership matches, if the correct score is predicted, 3 points should be awarded, if the correct result is predicted (i.e. predicted 3-1, but came out 2-1) then 1 point should be awarded, and if neither then 0 points.

    Could someone help me out with this formula?

    Many thanks,

    Mike

    EDIT: Also, we predict two goal scorers, which can only be used twice a season, if they score, an additional 2 points are awarded? Would it be easier to have separate columns for bonus points and then add these together with points for the score predictions?
    Attached Files Attached Files
    Last edited by Mike.G; 08-14-2010 at 09:17 AM. Reason: Additional information

  2. #2
    Registered User
    Join Date
    08-14-2010
    Location
    Peterborough, England
    MS-Off Ver
    Excel 2003
    Posts
    1

    Re: Football Predictions - 3 for score, 1 for result

    Hi, this is exactly what im looking for aswell but again iam also looking for the formulas so i can just enter the correct scores and all updates itself.

  3. #3
    Registered User
    Join Date
    06-10-2010
    Location
    Leeds, England
    MS-Off Ver
    Excel 2003
    Posts
    17

    Re: Football Predictions - 3 for score, 1 for result

    This assumes the actual score is inputted in B2 and C2 and the predicted score is in B3 and C3

    =IF(AND(B2=B3,C2=C3)=TRUE,3,IF(AND(B2>C2,B3>C3)=TRUE,1,IF(AND(B2<C2,B3<C3)=TRUE,1,IF(AND(B2=C2,B3=C3)=TRUE,1,0))))

    Any problems, let me know

  4. #4
    Registered User
    Join Date
    06-10-2010
    Location
    Leeds, England
    MS-Off Ver
    Excel 2003
    Posts
    17

    Re: Football Predictions - 3 for score, 1 for result

    As for your 2nd question, do you mean them two scorers can be only use twice a season, or the chance for the bonus point can only be used twice a season? If you clarify that a bit I'll be able to help as I'm creating a similar spreadsheet

  5. #5
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: Football Predictions - 3 for score, 1 for result

    Given that you have scores listed in a single cell you could add columns for Scores, e.g. "Mike's Scores" in column I, "Stuart's Scores" in column J etc. then you can use this formula in I4 copied across and down

    =IF(COUNTA($B4,C4)=2,IF($B4=C4,3,IF(SIGN(RIGHT($B4)-LEFT($B4))=SIGN(RIGHT(C4)-LEFT(C4)),1,0)),"")

    This formula only returns a value once both prediction and result have been entered....then you get 3,1 or 0 as required. Note that all scores should be entered as h-a, the above doesn't cater for double digit scores/predictions.....although you could alter it to do so if you wish....

    See attached
    Attached Files Attached Files
    Audere est facere

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1