Forum Discussion
parry2k
Super User
10 years agoHow to show data in dashboard for current month
Hello,
I created a dashboard to display sales by month. I have scheduled refresh for the data source but I want my dashboard to show sales by month for last 3 months.
What I need to do i...
- 10 years ago
Hi,
You have to create an intermediate measure :
Date difference = NOW() - MAX( [Date] )
Then you put a filter :
Date difference < 90
And you will have your data of the last three months.