sparky2205
Well-known Member
- Joined
- Feb 6, 2013
- Messages
- 507
- Office Version
- 365
- 2016
- Platform
- Windows
Hi folks,
I have the following data:
I'm trying to achieve a weighted average for each section under Summary i.e. F7 will contain the weighted average for Management / Quality Culture / Training, F10 will contain the weighted average for Management Review and F13 will contain the weighted average for Training. I need to express the result as a percentage of the overall weight for each section e.g. Training = 10.
Now the tricky bit (at least for me):
Thanks.
I have the following data:
Site Assessment Current Test Version.xlsx | ||||||||
---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | |||
6 | Management / Quality Culture / Training (20) | Assessment | Weight | Score | Summary | Section Score | ||
7 | Quality Policy and Objectives (5) | 5 | ||||||
8 | Quality Policy | 0 | 0 | 2.5 | ||||
9 | Objectives | 0 | 2 | 2.5 | ||||
10 | Management Review (5) | 5 | ||||||
11 | Management Review Meeting | 0 | 0 | 2.5 | ||||
12 | Management Review Action Items and Meeting Minutes | 0 | 0 | 2.5 | ||||
13 | Training (10) | 10 | 1.56818 | |||||
14 | Quality System On Boarding | 2.5 | 5 | 1.25 | ||||
15 | SME | 0 | 3 | 1.5 | ||||
16 | Procedure training (Corp and Site) | 0 | 2 | 2 | ||||
17 | Manufacturing. Training | 0 | 1 | 2.5 | ||||
Summary Sheet (2) |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C8:E9 | D8 | ='Main Sheet'!J8 |
C11:E12 | D11 | ='Main Sheet'!J13 |
C7,C10,C13 | C7 | =MID(B7,FIND("(",B7)+1,FIND(")",B7)-(FIND("(",B7)+1)) |
F13 | F13 | =SUMPRODUCT(D14:D17,E14:E17)/SUM(D14:D17) |
C14:E17 | C14 | ='Main Sheet'!I18 |
I'm trying to achieve a weighted average for each section under Summary i.e. F7 will contain the weighted average for Management / Quality Culture / Training, F10 will contain the weighted average for Management Review and F13 will contain the weighted average for Training. I need to express the result as a percentage of the overall weight for each section e.g. Training = 10.
Now the tricky bit (at least for me):
- The data can contain zero or N/A. Zero is a valid entry and is part of the data. N/A must be ignored. i.e. in the case of Training there are 4 sub categories. If one of these categories is N/A (Score) it is excluded from the calculation and the other 3 categories now make up a max possible 100%. If 2 are N/A then the remaining 2 make up a max possible 100% etc.
- At this point it hasn't been decided what way the scoring and weights will be recorded. In my data I have chosen a max score of 2.5 for each subcategory for convenience (10/4) but this could change. Regardless of the actual score I'm looking for the weighted average of each section as a percentage of the weight for that section based on individual subcategory scores and weights. I hope that makes sense.
- I've used SUMPRODUCT in F13 but I don't know how to convert this into a representative percentage of the weight for that subcategory.
- I then need to roll the 3 Summary scores up into the Section Score.
- Then there are multiple sections which will be rolled up into the Overall Score.
Thanks.