Results 1 to 3 of 3

Thread: Calculate grade based on percentage

  1. #1
    Join Date
    Aug 2009
    Posts
    18

    Calculate grade based on percentage

    Hi friends,

    I want to create a formula in Excel 2007 that calculate grade based on percentage for that i have created some formula but was not able to get the exact solution. Example, if the change is <=-7.5%, score is 100. If the change is >=-7.5% and <=-5.0%, score is 98. And so on. Now I could just make a long Nested If to compare the change against my criteria and assign a score. But I hope that somebody here might know a more robust way of doing this.

  2. #2
    Join Date
    Nov 2005
    Posts
    403

    Calculate grade based on percentage

    If you want to Calculate grade based on percentage then i would suggest you to use the following code by pressing F2 and you can also change A1 reference to desired cell.

    =IF(AND(A1>=80,A1<= 100),"A",IF(AND(A1>=60,A1<=79) ,"B",IF(AND(A1>=50,A1<=59),"C" ,IF(AND(A1>=40,A1<=49),"D",IF( AND(A1>=1,A1<=39),"E","NO GRADE")))))

  3. #3
    Join Date
    Jan 2009
    Posts
    86

    Calculate grade based on percentage

    I have try to create a formula with the following grades as A if it lies between 95 to 100% , A- if it lies between 90 to 94.9%, B+if it lies between 88 to 89.9%, B if it lies between 83 to 87.9%, B- if it lies between 80 to 82.9%, C+ if it lies between 75 to 79.9% , C if it lies between 70 to 74.9%, D if it lies between 60 to 69.9% , F if it lies between 59.9% and below and insert the following formula into cell A2.

    =IF(I2>=95%,"A",IF(I2>=90%,"A- ",IF(I2>=88%,"B+",IF(I2>=83%," B",IF(I2>=80%,"B-","")))))

    This formula calculates grades down to B-. If the score is not a B-, then the cell is left blank ("").

    In cell B2, fill in this formula:
    =IF(A2<>"",A2,IF(I2>=75%,"C+", IF(I2>=70%,"C",IF(I2>=60%,"D", "F"))))

    This formulas checks to see if there is a score in Column A (A2<>""). If there is a score, it copies the value in cell A2; otherwise it calculates grades for C-F.

Similar Threads

  1. Replies: 8
    Last Post: 08-05-2012, 12:46 PM
  2. Replies: 2
    Last Post: 23-02-2012, 04:57 PM
  3. better way to show grade in php
    By Juany in forum Software Development
    Replies: 5
    Last Post: 28-01-2012, 08:41 PM
  4. Best grade of aluminum sheet for CPU Tower
    By I'm Legend in forum Hardware Peripherals
    Replies: 5
    Last Post: 22-03-2011, 09:10 AM
  5. What is the Program to calculate the percentage?
    By Ekpah in forum Software Development
    Replies: 3
    Last Post: 08-12-2009, 12:30 PM

Tags for this Thread

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
  •  
Page generated in 1,714,299,168.31739 seconds with 17 queries