Forum Discussion
jlamprecht
7 years agoRegular Visitor
Cumulative total by group
I know how to create a running total column with calculate(
sum ( table[Values]),
all(table),
table[date] <= earlier (table[date])
) however, I have several jobs on one table that need their own r...
- 7 years ago
jlamprecht try this
calculate( sum ( table[Values]), allexcept(table, table[job]), table[date] <= earlier (table[date]) )
parry2k
Super User
7 years agojlamprecht try this
calculate( sum ( table[Values]), allexcept(table, table[job]), table[date] <= earlier (table[date]) )
jlamprecht
7 years agoRegular Visitor
That is working perfectly!