JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,691
- Office Version
- 365
- Platform
- Windows
Are the formulas in H6 & H7 the best way to calculate the mean and std dev of a possibly large collection of numbers identified by their tallies?
In this example, I have a list of 217 numbers, 100 5s, 75 4s, 30 3s, 2 2s, & 10 1s.
Thanks
In this example, I have a list of 217 numbers, 100 5s, 75 4s, 30 3s, 2 2s, & 10 1s.
Cell Formulas | ||
---|---|---|
Range | Formula | |
H6 | H6 | =(D7*E7+D8*E8+D9*E9+D10*E10+D11*E11)/Tbl[[#Totals],[N]] |
H7 | H7 | =LET(m,H6, SQRT( ( ((D7-m)^2*E7) + ((D8-m)^2*E8) + ((D9-m)^2*E9) + ((D10-m)^2*E10) + ((D11-m)^2*E11) ) / Tbl[[#Totals],[N]] ) ) |
E12 | E12 | =SUBTOTAL(109,[N]) |
Thanks