Forum Discussion
Anonymous
5 years agoNot applicable
Problem with creating running total with multiple categories
Hi, I have looked at many different community posts but I haven't found one that's solution works with my problem. I am trying to create a running total for a dataset that contains multiple people...
- 5 years ago
Anonymous ,
Try this measure:
_Running Total = CALCULATE(SUM('Table'[Amount]), FILTER(ALL('Table'[Month]), 'Table'[Month] <= MAX('Table'[Month])))
camargos88
5 years agoCommunity Champion
Anonymous ,
Try this measure:
_Running Total = CALCULATE(SUM('Table'[Amount]), FILTER(ALL('Table'[Month]), 'Table'[Month] <= MAX('Table'[Month])))
Anonymous
5 years agoNot applicable
Thank you!!!!!