+ Reply to Thread
Results 1 to 11 of 11

Excel formula to build scorecard. Decimal values of a scoring grid.

  1. #1
    Registered User
    Join Date
    09-19-2012
    Location
    Pune
    MS-Off Ver
    Excel 2010
    Posts
    8

    Excel formula to build scorecard. Decimal values of a scoring grid.

    I have designed a scorecard.
    FY 2013 Goals
    Parameter Weight 5 4 3 2 1
    VOC 25% >=4.91 4.81-4.9 4.7-4.8 4.61-4.69 <=4.60
    Case Closures 25% 7 6 5 4 3
    ASA Critical 5% 100% 98% 95% 93% 90%

    I can use the IF function like =IF(G3>=7,5,IF(G3>=6,4,IF(G3>=5,3,IF(G3>=4,2,1)))) to get the rating of 1 to 5. This is working well.

    The help i need is to get the decimal values.
    For E.g. if Case Closure is 5.5 the rating for that parameter should be a value between rating 4 and 3 and not default to 5

    Hope i have explained what i am looking for.
    Last edited by sunnynayak; 01-28-2013 at 10:44 AM.

  2. #2
    Valued Forum Contributor Melvinrobb's Avatar
    Join Date
    06-19-2012
    Location
    Manitoba, Canada
    MS-Off Ver
    Excel 2013
    Posts
    1,128

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    would 5.5 case closures result in a rating of 3.5?
    Please click the * icon below if I have helped.

  3. #3
    Registered User
    Join Date
    09-19-2012
    Location
    Pune
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    Quote Originally Posted by Melvinrobb View Post
    would 5.5 case closures result in a rating of 3.5?
    Yes. It is however tricky as the case closure can be a weird number as 5.76 etc.

  4. #4
    Valued Forum Contributor Melvinrobb's Avatar
    Join Date
    06-19-2012
    Location
    Manitoba, Canada
    MS-Off Ver
    Excel 2013
    Posts
    1,128

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    For this specific example, you could just use
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Obviously this won't work if you change the ratings, but...

    You can also add this onto the end of your formula:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    I suggest using the INDEX and match function for this:
    Assuming your ratings are in b2:f2, and your Case closures are in b4:f4, the following would work
    =INDEX($B$2:$F$2,1,MATCH(A7,B4:F4,-1))+(ROUND(g3,0)-g3)

  5. #5
    Registered User
    Join Date
    09-19-2012
    Location
    Pune
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    Thank you for the quick response.
    I tried the Roundup and INDEX and MATCH method.

    I see an issue there.

    When i enter the closure as 5.80 The score shows 4.20 and when the closure is 5.50 the score shows 4.50

    No clue what is wrong.

  6. #6
    Valued Forum Contributor Melvinrobb's Avatar
    Join Date
    06-19-2012
    Location
    Manitoba, Canada
    MS-Off Ver
    Excel 2013
    Posts
    1,128

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    the formula i gave is incorrect, in a couple of places. Sorry about that.

    First of all, in order for INDEX/MATCH to work, you need to list your rankings so 1-5 is listed left to right. That is because that is how the formula works. It looks in the first cell and sees if the value in g3 is lower than 7 and determines that since g3=5.8, it is lower than 7, and proceeds to look at the next cell in the row). when it gets to the cell value of 5, it recognizes that 5.8 is NOT lower than 5, so it stops on that column, and displays the associated value in the ranking row, in this 3. I also changed the round function, as what I gave you was just plain wrong.

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Last edited by Melvinrobb; 01-25-2013 at 06:39 PM.

  7. #7
    Registered User
    Join Date
    09-19-2012
    Location
    Pune
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    Thank this is working for closures but i am stuck for other parameters.


    Rating 1 2 3 4 5

    Quality 85% 87% 90% 92% 95%

    How can i calculate this and other parameters.

  8. #8
    Valued Forum Contributor Melvinrobb's Avatar
    Join Date
    06-19-2012
    Location
    Manitoba, Canada
    MS-Off Ver
    Excel 2013
    Posts
    1,128

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    Is this scenario, if the percentage is 88.5%, would you want a rating of 2.5 to appear, or 2?

  9. #9
    Registered User
    Join Date
    09-19-2012
    Location
    Pune
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    I would want the rating to appear as 2.5.

  10. #10
    Valued Forum Contributor Melvinrobb's Avatar
    Join Date
    06-19-2012
    Location
    Manitoba, Canada
    MS-Off Ver
    Excel 2013
    Posts
    1,128

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    The attached should work. The formula now can work if the value is a number, of a percentage.
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    09-19-2012
    Location
    Pune
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Excel formula to build scorecard. Decimal values of a scoring grid.

    Great. Thank you.

+ 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