JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,676
- Office Version
- 365
- Platform
- Windows
I need a cumulative column in a table that will survive adding, deleting, moving, and sorting rows. This is what I came up with. Is it the best way? It works, but it seems inefficient.
Typing Tutor Adaptive Learning Algorithm.xlsm | ||||
---|---|---|---|---|
I | J | |||
5 | Prob | Cum Prob | ||
6 | 10.00% | 10.00% | ||
7 | 20.00% | 30.00% | ||
8 | 30.00% | 60.00% | ||
9 | 40.00% | 100.00% | ||
10 | 100.00% | |||
Weighted Drills 03 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
J6:J9 | J6 | =SUM(OFFSET(Table10[[#Headers],[Prob]],1,0):Table10[@Prob]) |
I10 | I10 | =SUBTOTAL(109,[Prob]) |