+ Reply to Thread
Results 1 to 10 of 10

dealing with student grades

  1. #1
    Registered User
    Join Date
    07-02-2012
    Location
    South Korea
    MS-Off Ver
    Excel 2010
    Posts
    30

    dealing with student grades

    I am doing a spreadsheet for student grades. There is a limit (30% of no of students) on how many students can get A or A+.

    More students get A's based on their test scores than is allowed, so I want to know if there is a formula (to put in Column D2 below) to automatically reduce the A scores of the students over the 30% limit down to B+

    Example

    There are 20 students in a class but only 6 can get A and above.

    However 8 get A scores on their tests.

    So I need a formula to reduce the two lowest A scores outside of the 30% range to B+.

  2. #2
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: dealing with student grades

    Please refer attched sample worksheet. The data is sorted based on scores. Refer 'Column D' for the correct grades
    Attached Files Attached Files
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Registered User
    Join Date
    07-02-2012
    Location
    South Korea
    MS-Off Ver
    Excel 2010
    Posts
    30

    Re: dealing with student grades

    Quote Originally Posted by Ace_XL View Post
    Please refer attched sample worksheet. The data is sorted based on scores. Refer 'Column D' for the correct grades
    Thanks for your reply. IT works with the A-B reduction, but I don't want lower scores being raised, just the A/A+ scores over the 30% being reduced to B+.
    How could that be reflected in the formula?

  4. #4
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,361

    Re: dealing with student grades

    can you try to change the * in "A*" with "A+" if this works.
    IF(COUNTIF($C$3:$C3,"A+")>C
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  5. #5
    Registered User
    Join Date
    07-02-2012
    Location
    South Korea
    MS-Off Ver
    Excel 2010
    Posts
    30

    Re: dealing with student grades

    Quote Originally Posted by vlady View Post
    can you try to change the * in "A*" with "A+" if this works.
    IF(COUNTIF($C$3:$C3,"A+")>C
    Maybe I should have sent the file at the beginning to make it obvious.

    The formula in question is in the 'running totals' worksheet column M6-25

    I want the lowest A+/A grades over the 30% maximum number of students reduced to a B+ but not any of the other scores below an A.
    Attached Files Attached Files

  6. #6
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,361

    Re: dealing with student grades

    ??
    in M6 then down=IF(L6="A+",IF(COUNTIF($L$6:$L6,"A+")>2,"B+",L6),L6)

    odd can't make good one...

  7. #7
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,361

    Re: dealing with student grades

    =if(l6="a",if(countif($l$6:$l6,"a*")>countif($l$6:$l$25,"a*")*0.3,"b+",l6),if(l6="a+",if(countif($l$6:$l6,"a*")>countif($l$6:$l$25,"a*")*0.3,"b+",l6),l6))

  8. #8
    Registered User
    Join Date
    07-02-2012
    Location
    South Korea
    MS-Off Ver
    Excel 2010
    Posts
    30

    Re: dealing with student grades

    This doesn't seem to work.

    Please see attachment.
    Attached Files Attached Files

  9. #9
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,361

    Re: dealing with student grades

    =IF(OR(C4="A",C4="A+"),IF(COUNTIF($C$4:$C4,"A*")>COUNTA($C$4:$C$23)*0.3,"B+",C4),C4)

    last try for me...

    grades should be a sorted and change reference cells on the formula exact numbers of cells...COUNTA($C$4:$C$23)

  10. #10
    Registered User
    Join Date
    07-02-2012
    Location
    South Korea
    MS-Off Ver
    Excel 2010
    Posts
    30

    Re: dealing with student grades

    This formula worked perfectly with my decending ranked scores. Thanks a lot...

    Now, how can I get these 'changed 'scores to copy or go into a column that is not ranked?

+ 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