Forum Discussion

parry2k's avatar
parry2k
Icon for Super User rankSuper User
10 years ago
Solved

How 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...
  • Rémi's avatar
    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.