Forum Discussion
Anonymous
7 years agoNot applicable
DAX formula help
I have some data like this (here only shows the first 20 rows): This is raw data about each project year, each state, region, device has multiple events, and the value for each event is "Count" colu...
- 7 years ago
Hi,
For Question1, try this rolling average measure
=if(ISBLANK(MIN('Calendar'[Date])),BLANK(),divide('SAMPLE DATA'[Rolling12MonTotal], 12))
Hope this helps.
Anonymous
7 years agoNot applicable
Hi Ashish_Mathur, thank you! It works for my question 1.
Any suggestion for question 2? Thanks!
Ashish_Mathur
7 years agoSuper User
You are welcome.