+ Reply to Thread
Results 1 to 12 of 12

weighted average including N/A

  1. #1
    Registered User
    Join Date
    07-01-2010
    Location
    London
    MS-Off Ver
    Excel 2013
    Posts
    61

    weighted average including N/A

    Hello all.

    First time post and I am hoping someone can help me out

    I have attached a spreadsheet which I am working on. I have a percentage score for a number of criteria in a call centre. I want to ensure that the user can select N/A when a criteria is not applicable and make sure that the result of this selection does not affect the overall score. I have a scoring of 0%, 25%, 50%, 75% and 100% for each question/criteria. By selecting NA the user should not be skewing the data.
    Hope this makes sense.

    Many thanks in advance

    Andrew
    Attached Files Attached Files
    Last edited by sav1979; 04-11-2011 at 01:17 PM.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: weighted average including N/A

    I think the way you have it set up will work. People can choose N/A and that choice will not affect your results because on the Summary Sheet, you are only Including Columns E:I. You might want to include a separate stat for how many N/A's the team received for a specific catagory and trend those to see if catagories are being appropriately fielded.

    on a side note, you can clean up your formulas a bit. For example in Summary!E10
    Instead of
    =SUM('Call 1'!E10,'Call 2'!E10,'Call 3'!E10,'Call 4'!E10,'Call 5'!E10)
    Try
    =SUM('Call 1:Call 5'!E10)

    and in O9, instead of
    =SUM((I10*I9),(H10*H9),(G10*G9),(F10*F9),(E10*E9),(I11*I9),(H11*H9),(G11*G9),(F11*F9),(E11*E9),(I12*I9),(H12*H9),(G12*G9),(F12*F9),(E12*E9),(I13*I9),(H13*H9),(G13*G9),(F13*F9),(E13*E9))/SUM(E10:I13)
    try
    =SUMPRODUCT($E$10:$I$13*$E$9:$I$9)/SUM($E$10:$I$13)
    Hope that helped.
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    07-01-2010
    Location
    London
    MS-Off Ver
    Excel 2013
    Posts
    61

    Re: weighted average including N/A

    Hi Chemist,

    Excellent, many thanks for the 'clean up', that certainly makes the process easier. With regards to the exclusion of the NA field - If currently a score is attributed to NA and therefore nothing is recorded in the other fields then it simply is excluded but this surely skews the data? If for example in sheet 'Call 1', I remove the entry in 'welcome using company name' and put it in the NA category, the score drops from 44% to 25%.

    Thanks again in advance

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: weighted average including N/A

    It changes your data but doesn't skew it. You've removed an "Excellent" and put it into "NA" which isn't counted so your overall score will go down. Let's look at it from another angle. Let's say every call rated "Opened with Company name" as "Good". Your score would be (5 * 0.75)/5 or 75%. Now move 2 (a significant number) over to NA. Your calculation is now (3 * 0.75)/3 or 75%. It doesn't change your results. If it did, that would be skewing. Does that make sense?

  5. #5
    Registered User
    Join Date
    07-01-2010
    Location
    London
    MS-Off Ver
    Excel 2013
    Posts
    61

    Re: weighted average including N/A

    Hi Chemist, yes, you're right. That makes sense. I was a little concerned that by simply 'excluding' data in the total would not be fair to those who didn't answer a question. In a case where a clasification is NA on all occasions I will get a DIV/0!. How can I get this to show as NA in the summary ?
    Thanks so much for your help. This is excellent stuff!

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: weighted average including N/A

    I would include an IF statement to check the denominator. For example in Summary!O9
    =IF(SUM(SUM(E10:I13)=0, "N/A", =SUMPRODUCT($E$10:$I$13*$E$9:$I$9)/SUM($E$10:$I$13))

    Does that work for you?

  7. #7
    Registered User
    Join Date
    07-01-2010
    Location
    London
    MS-Off Ver
    Excel 2013
    Posts
    61

    Re: weighted average including N/A

    Hi Chemist, I can't get that formula to work for me? I just get an error message 'The formula you typed contains an error). Also, if I applied the IF formula to the summary page, I would still get a DIV0! in the total score for the individual sheets.

    Thanks

  8. #8
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: weighted average including N/A

    OOps, that = shouldn't be in front of the SUMPRODUCT. I'll take a look at the rest of your sheet.

    =IF(SUM(E10:I13)=0, "N/A", SUMPRODUCT($E$10:$I$13*$E$9:$I$9)/SUM($E$10:$I$13))

  9. #9
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: weighted average including N/A

    Find attached, an updated copy of your spreadsheet. Let us know if there are any questions or concerns.
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    07-01-2010
    Location
    London
    MS-Off Ver
    Excel 2013
    Posts
    61

    Re: weighted average including N/A

    Chemist, you're a legend. Many thanks for the help. A cold one on me if ever you are in Dubai.
    Thanks

  11. #11
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: weighted average including N/A

    No problem and thanks for the Rep points. Can you mark this thread solved? (Edit your first post and go advanced and change the title prefix).

  12. #12
    Registered User
    Join Date
    07-01-2010
    Location
    London
    MS-Off Ver
    Excel 2013
    Posts
    61

    Re: weighted average including N/A

    Done. Thanks again

+ 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