Forum Discussion
Differences between last 5 months
Hi all,
Im currently looking to calculate the total cases difference between this month towards last 5 months. Just wondering how can I achieve that.
Here's a screenshot of how my data is looking right now:
Regards,
Shawn
- Anonymous3 years ago
Hi @Theriaux ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a measure as below:
Difference = VAR _seldate = SELECTEDVALUE ( 'Table'[Date] ) VAR _enddate = EOMONTH ( EDATE ( _seldate, -1 ), 0 ) VAR _startdate = EDATE ( _enddate, -5 ) + 1 VAR _pre5years = SUMX ( FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] >= _startdate && 'Table'[Date] <= _enddate ), [Total cases] ) RETURN IF ( ISBLANK ( _pre5years ), BLANK (), [Total cases] - _pre5years )You can refer the following links to get the values for last N months:
Display Last N months data in Power BI
Display Last N Months & Selected Month using Single Date Dimension in Power BI
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
6 Replies
- amitchandakSuper User
Anonymous , do you need MOM ?
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKATime Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s- AnonymousNot applicable
Hey amitchandak , unfortunately, what I am looking for is this month compared to last 5 months (total cases for last 5 months).
- AnonymousNot applicable
Hi @Theriaux ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a measure as below:
Difference = VAR _seldate = SELECTEDVALUE ( 'Table'[Date] ) VAR _enddate = EOMONTH ( EDATE ( _seldate, -1 ), 0 ) VAR _startdate = EDATE ( _enddate, -5 ) + 1 VAR _pre5years = SUMX ( FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] >= _startdate && 'Table'[Date] <= _enddate ), [Total cases] ) RETURN IF ( ISBLANK ( _pre5years ), BLANK (), [Total cases] - _pre5years )You can refer the following links to get the values for last N months:
Display Last N months data in Power BI
Display Last N Months & Selected Month using Single Date Dimension in Power BI
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards