+ Reply to Thread
Results 1 to 3 of 3

Grades

  1. #1
    Registered User
    Join Date
    10-04-2005
    Posts
    2

    Grades

    Hello,
    I am an Excel newbie, and for some reason my wife has prevailed on me to help her build a spreadsheet for her middle shool grades. Here is the problem: She wants to calculated weighted averages, which is easy enough (in her system, homework is 25%, quizzes 35%, and 1 test at 40%). The problem is that she wants the spreadsheet to recalculate automatically if a test is left blank. Since there is only one test, excel will need to re-weight the averages. So far, I have been doing it manually for the kids who miss a test, but I want to use the IF (ISBLANK) syntax to automate everything. Can anyone help me?
    Thanks,
    Mike

  2. #2
    Forum Expert swatsp0p's Avatar
    Join Date
    10-07-2004
    Location
    Kentucky, USA
    MS-Off Ver
    Excel 2010
    Posts
    1,545
    do you mean something like this:

    =IF(ISBLANK(C2),FORMULA WITHOUT TEST,FORMULA WITH TEST)

    where C2 is the cell that holds the test score. If that cell is blank, the formula for scoring without the test is used, else the formula with the test is used.

    Is this what you are looking for?
    Bruce
    The older I get, the better I used to be.
    USA

  3. #3
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    Quote Originally Posted by Michael L
    Hello,
    I am an Excel newbie, and for some reason my wife has prevailed on me to help her build a spreadsheet for her middle shool grades. Here is the problem: She wants to calculated weighted averages, which is easy enough (in her system, homework is 25%, quizzes 35%, and 1 test at 40%). The problem is that she wants the spreadsheet to recalculate automatically if a test is left blank. Since there is only one test, excel will need to re-weight the averages. So far, I have been doing it manually for the kids who miss a test, but I want to use the IF (ISBLANK) syntax to automate everything. Can anyone help me?
    Thanks,
    Mike
    I will ASSUME that when the test is left blank and there is a recalculation to be done, the percentage weights will be modified as follows:

    For homeworks : 25/(25+35) = 42%

    For quizzes : 35/(25+35) = 58%

    Therefore, your formula is

    =if(C2="",0.42*A2+0.58*B2,0.25*A2+0.35*B2+0.40*C2)

    where

    A2 = homework grades
    B2 = quizzes grades
    C2 = test grade

    Hope is this what you are looking for.

    Regards.
    BenjieLop
    Houston, TX

+ 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