Forum Discussion
running total
- 6 years ago
Refer
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601
Hi
Still not resolved, please assist. thanks
Can you explain how to do a cumulative or running sum of counts of text data between selected dates. For instance, I have multiple years of data by years and months. The data includes a column containing text, say “M”, “L” etc…. I need to draw a chart showing both counts and running counts by months. And use a slicer to select a year, once I select a specific year then I should be able to visualize the counts and running counts of text of the selected year. So running counts should be for a selected time say a year, we may use Min and Max date var for a selected year.
- Ashish_Mathur6 years ago
Super User
Hi,
I answered a similar question of yours here. Did that not work?
- Anonymous6 years agoNot applicable
Thanks Ashish,
I managed to resolve by creating a Quick Measure from the variable of counts, for example, below DAX
Running count in Year =CALCULATE(COUNTA('data1'[level]),FILTER(ALLSELECTED('data1'[Year]),ISONORAFTER('data1'[Year], MAX('data1'[Year]), DESC)))