Forum Discussion
Anonymous
6 years agoNot applicable
Running Total after certain Month
Hi Experts, Having a little difficulty in getting Power BI to calculate a running total after a certain month. So I am trying to calculate the running total after a certain month. But its a litt...
- 6 years ago
Hi Anonymous ,
Based on what you have described, you want to calculate the cumulative total after a month. Is a certain month a fixed value? Or a dynamic value? If it's a dynamic value, what's the logic behind it.
If the month is a fixed value,please try to create measure like this.
RunningTotal = IF ( MAX ( 'Table'[date] ) >= DATE ( 2020, 3, 1 ), CALCULATE ( SUM ( 'Table'[sales] ), FILTER ( ALLEXCEPT ( 'Table', 'Table'[product] ), 'Table'[date] >= DATE ( 2020, 3, 1 ) && SUMX ( FILTER ( 'Table', EARLIER ( 'Table'[date] ) <= 'Table'[date] ), 'Table'[sales] ) ) ), MAX ( 'Table'[sales] ) )Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Hi amitchandak
thank you for your suggestion. But it is still not working. Tried both your formulas..
Does this calc work on Product line level?
Is it possible to only use the date in the Sales table?
| Product | Jan | Feb | Mar | Apr |
| Trousers (raw data) | 2000 | 1000 | 500 | 600 |
| Trousers (desired) | 2000 | 1000 | 1500 | 2100 |
| Tshirts (Desired) | 3000 | 4000 | 4600 | 5200 |
amitchandak
6 years agoSuper User
Anonymous , Can you share raw data and sample output in table format? Or a sample pbix after removing sensitive data.