+ Reply to Thread
Results 1 to 9 of 9

Awarding Points In Standingss

  1. #1
    Registered User
    Join Date
    07-07-2010
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    82

    Awarding Points In Standingss

    I want to have the column for "Points" in my sheet to provide .5 results for ties, instead of repeating the same number and then have the next points, based on scores, to drop in places and return a whole number. If the awarded points are for 28 places based on 28 scores, I want the ties to be totaled and return a .5 result.

    Abbreviating the rows, I'll use 6 places as an example. The sum of the points in the first example total 21. The sum in Example 2 total 20. The sum in example 3 total 21. I want my points to be like example 3.

    Please Login or Register  to view this content.
    Because there are other factors determining the standings, a simple RANK formula doesn't work.

    The following formula is what I am currently using that returns results like in EX 2. Is there a simple "add on" that I can incorporate into this formula?

    =IF(C4="G","",SUMPRODUCT((C$4:C$31<>"G")*(AH$4:AH$31<AH4))+1
    Last edited by shg; 08-25-2010 at 02:45 PM.

  2. #2
    Registered User
    Join Date
    07-07-2010
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    82

    Re: Awarding Points In Standingss

    Dang it. The examples ran together.

    Hope you all can decipher it...

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Awarding Points In Standingss

    One way:
    Please Login or Register  to view this content.
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Registered User
    Join Date
    07-07-2010
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    82

    Re: Awarding Points In Standingss

    shg, that works for a straight column where all the scores are included, but I have some blanks that don't get points. How do I incorporate your code into what I already have:


    =IF(C4="G","",SUMPRODUCT((C$4:C$31<>"G")*(AH$4:AH$31<AH4))+1

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Awarding Points In Standingss

    It's really helpful if you post examples representative of your actual data ...

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

    Re: Awarding Points In Standingss

    Try

    =IF(C4="G","",SUMPRODUCT((C$4:C$31<>"G")+0,(AH$4:AH$31<AH4)+(AH$4:AH$31=AH4)/2)+0.5)
    Audere est facere

  7. #7
    Registered User
    Join Date
    07-07-2010
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    82

    Re: Awarding Points In Standingss

    shg, sorry for not being more explicit.

    daddylonglegs, your code works, except the points are not correct. I have 28 point places. So 1st place would be 28. If there were a tie, it should be 27.5. But, if I have two scores that don't qualify ("G"), your code provided 25.5.

    I could add +3 at the end of the formula to get it to be correct, but that would mean that every time I have a change in the score participants, I have to adjust the code to accommodate.

    Perhaps I am missing something

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

    Re: Awarding Points In Standingss

    OK try adding a COUNTIf like this

    =IF(C4="G","",SUMPRODUCT((C$4:C$31<>"G")+0,(AH$4:AH$31<AH4)+(AH$4:AH$31=AH4)/2)+0.5+COUNTIF(C$4:C$31,"G"))

  9. #9
    Registered User
    Join Date
    07-07-2010
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    82

    Re: Awarding Points In Standingss

    SOLVED!

    That did it daddylonglegs. I am starting to get a better grasp on the COUNTIF function, with your help.

    Thank you much.

+ 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