+ Reply to Thread
Results 1 to 6 of 6

Bonuses and Penalties in Grade Books

  1. #1
    Registered User
    Join Date
    10-10-2005
    Posts
    3

    Question Bonuses and Penalties in Grade Books

    Hi all,

    I am working on an assignment in my textbookwith a grade book. I've already figured out the test average of 3 tests using the SUM and MIN functions. The test grades are in cells B4:E4. I had to drop the lowest grade and compute the average of the remaining three, which I've already done.
    =SUM(B4:E4)-MIN(b4:E4))/3
    There is a next part I am stuck on. Students are required to complete a designated number of homework assignments(which is 12 and it is in cell E19). Then receive a bonus or penalty for ever additional or deficient home assignment. The bonus is added to the test average to determine the semester average. The penalty for each assignment missing is 2 and that info is in cell E20 and the bonus for each additional assignment is 1 and that info is in cell E21. Cell H4 is the bonus or penalty and I4 is the semester average.
    I would be grateful for any help. Thanks!

    Kahlan

  2. #2
    Registered User
    Join Date
    10-10-2005
    Posts
    3
    Oh, the number of homeworks is in G4 and bonus or the bonus or penalty formula will go in H4.

    Thanks,
    Kahlan

  3. #3
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    Quote Originally Posted by Kahlan
    Hi all,

    I am working on an assignment in my textbookwith a grade book. I've already figured out the test average of 3 tests using the SUM and MIN functions. The test grades are in cells B4:E4. I had to drop the lowest grade and compute the average of the remaining three, which I've already done.
    =SUM(B4:E4)-MIN(b4:E4))/3
    There is a next part I am stuck on. Students are required to complete a designated number of homework assignments(which is 12 and it is in cell E19). Then receive a bonus or penalty for ever additional or deficient home assignment. The bonus is added to the test average to determine the semester average. The penalty for each assignment missing is 2 and that info is in cell E20 and the bonus for each additional assignment is 1 and that info is in cell E21. Cell H4 is the bonus or penalty and I4 is the semester average.
    I would be grateful for any help. Thanks!

    Kahlan
    Try this:

    In Cell E20: =if(G4<12,(G4-E19)*2,"")

    In Cell E21: =if(G4>=12,G4-E19,"")

    In Cell H4: =if(E20="",E21,E20)


    Therefore, the semester average in Cell I4:

    =((SUM(B4:E4)-MIN(B4:E4))/3) + H4


    I hope this is what you need.

    Regards.
    BenjieLop
    Houston, TX

  4. #4
    RagDyer
    Guest

    Re: Bonuses and Penalties in Grade Books

    Try this single formula, which will calculate the semester average by just
    using the number of homework assignments completed that were entered in G4.

    No need for a separate bonus or penalty calculation cell, unless you might
    want it for reference.

    Enter this in I4:

    =AVERAGE(LARGE(B4:E4,{1,2,3}))+(G4<12)*((G4-12)*2)+(G4>12)*(G4-12)

    --
    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "Kahlan" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Oh, the number of homeworks is in G4 and bonus or the bonus or penalty
    > formula will go in H4.
    >
    > Thanks,
    > Kahlan
    >
    >
    > --
    > Kahlan
    > ------------------------------------------------------------------------
    > Kahlan's Profile:

    http://www.excelforum.com/member.php...o&userid=27983
    > View this thread: http://www.excelforum.com/showthread...hreadid=474923
    >



  5. #5
    Registered User
    Join Date
    10-10-2005
    Posts
    3
    Thanks to you both for all your help! It is very much appreciated!

  6. #6
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    You are welcome ...

+ 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