Forum Discussion
Calculating rolling revenue numbers
Hi ALL,
I have to build a pretty tricky chart where I have to show revenue by month.
The challenge is that a 12 month rolling data point would be the current month plus the previous 11 months, the previous month data point would be the previous month plus the previous 11 months i.e. Aug 2019 would be Aug 2019 to Sept 2018, July 2019 would be July 2019 to Aug 2018, June 2019 would be June 2019 to July 2018.
Please help!
3 Replies
- Greg_Deckler
Community Champion
See if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TITHW/m-p/434008 - v-diye-msft
Community Support
Hi Anonymous
If you've fixed the issue on your own please kindly share your solution. if the above posts help, please kindly mark it as a solution to help others find it more quickly. thanks a lot!
- amitchandak
Super User
You can take advantage of datesinperiod
Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],ENDOFMONTH(Sales[Sales Date]),-12,MONTH))Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
Thanks.