FryGirl
Well-known Member
- Joined
- Nov 11, 2008
- Messages
- 1,368
- Office Version
- 365
- 2016
- Platform
- Windows
Hoping someone may have a suggestion on how to achieve this weighted score. As you can see in the data below, there are 4 categories. Each category is weighted by the percentages in the second table and can be seen by the Sumproduct formula used in row 2. After developing the weighted score in row 2, row 13 now shows the risk factors from the third table.
Here's the challenge, at least for me. In row 21 - 23, I need to now weight by the weights in row 8. This is where I do not have a formula. I'm actually looking for either identifying on overall score based on the Low, Med, or High, but also maybe like a grade level score card, A, B, C, D, and F.
I'm open to any suggestions as I'm struggling with how to proceed. Thanks
Here's the challenge, at least for me. In row 21 - 23, I need to now weight by the weights in row 8. This is where I do not have a formula. I'm actually looking for either identifying on overall score based on the Low, Med, or High, but also maybe like a grade level score card, A, B, C, D, and F.
I'm open to any suggestions as I'm struggling with how to proceed. Thanks
Weighted.xlsx | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | Cat 1 | Cat 2 | Cat 3 | Cat 4 | |||
2 | Sample Data | 81% | 69.00 | 89.63% | 24.38% | ||
3 | 72.00 | 89.9% | 17.9% | ||||
4 | 68.00 | 88.8% | 36.4% | ||||
5 | 45.7% | ||||||
6 | |||||||
7 | Cat 1 | Cat 2 | Cat 3 | Cat 4 | |||
8 | Weights | 50% | 30% | 10% | 10% | ||
9 | 25% | 75% | 70% | ||||
10 | 75% | 25% | 20% | ||||
11 | 10% | ||||||
12 | |||||||
13 | High Risk | Low Risk | Med Risk | Med Risk | |||
14 | |||||||
15 | Low Risk | 90% – 100% | < 81 | 90% – 100% | < 15% | ||
16 | Med Risk | 85% – 89% | 81 – 110 | 85% – 89% | 15% – 25% | ||
17 | High Risk | < 85% | > 110 | < 85% | > 25% | ||
18 | |||||||
19 | |||||||
20 | |||||||
21 | Low Risk | 9.0 – 10.0 | A | ||||
22 | Med Risk | 8.5 – 8.9 | B | ||||
23 | High Risk | < 8.5 | C | ||||
24 | D | ||||||
25 | F | ||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C2:D2 | C2 | =SUMPRODUCT(C3:C4,C9:C10) |
E2 | E2 | =SUMPRODUCT(E3:E5,E9:E11) |
B13,D13 | B13 | =IF(B2<0.85,$A17,IF(B2<0.9,$A16,$A15)) |
C13 | C13 | =IF(C2>110,$A17,IF(C2>81,$A16,$A15)) |
E13 | E13 | =IF(E2>0.25,$A17,IF(E2>0.15,$A16,$A15)) |