Forum Discussion
tmullady
10 years agoRegular Visitor
Running total chart
Hello, I wanted to see if someone could help me create a running total chart. My fields are the following DATE , RANGE, CONTRIBUTIONS Any help would be greatly appreciated. Thanks, ...
- 10 years ago
Not much to go on, but you should be able to use the Cumulative Total pattern here I believe:
http://www.daxpatterns.com/cumulative-total/
- 10 years ago
Running total usually looks like this ...
CALCULATE ( SUM(TABLE[Contributions]), FILTER( ALL(DATE), DATE[Date] <= MAX(DATE[Date] ) )
Greg_Deckler
10 years agoCommunity Champion
Not much to go on, but you should be able to use the Cumulative Total pattern here I believe:
http://www.daxpatterns.com/cumulative-total/