wsnyder
Board Regular
- Joined
- Sep 23, 2018
- Messages
- 224
- Office Version
- 365
- Platform
- Windows
Hi,
How can I calculate a weighted mean, give a range of values?
Let me explain
I have a range of values, 11% - 20%. 17% of all scores fell within that range
I tried Sumproduct/Sum on both ends of the spectrum
On Low, that is giving me 32.66%
On High that is giving me 41.66%
The final mean should fall closer but not over 41.66% since 67% of scores are 30 and higher.
Thanks,
-w
How can I calculate a weighted mean, give a range of values?
Let me explain
I have a range of values, 11% - 20%. 17% of all scores fell within that range
Bucket | Low | High | Score |
11 - 20 pcnt | 0.11 | 0.2 | 17% |
21 - 30 pcnt | 0.21 | 0.3 | 17% |
31 - 40 pcnt | 0.31 | 0.4 | 17% |
41 - 50 pcnt | 0.41 | 0.5 | 33% |
51 - 60 pcnt | 0.51 | 0.6 | 17% |
100% | |||
I tried Sumproduct/Sum on both ends of the spectrum
On Low, that is giving me 32.66%
On High that is giving me 41.66%
The final mean should fall closer but not over 41.66% since 67% of scores are 30 and higher.
Thanks,
-w
Group | Formula |
Low | =SUMPRODUCT(B2:B6,D2:D6)/SUM(D2:D6) |
High | =SUMPRODUCT(C2:C6,D2:D6)/SUM(D2:D6) |