Hi folks,
I would like to get the sale value of previous month of last year.
For example:
In Jan 2021, I wish to get the value in Dec 2019.
In Feb 2021, I wish to get the value in Jan 2020.
In Mar 2021, I wish to get the value in Feb 2020.
....
Any input is highly appreciated. Thanks in advance!
Solved! Go to Solution.
@tracytran91 , With date table and time intelligence
Try like example
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-13,MONTH)))
13 Month behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-13,Month))
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=6LUBbvcxtKA
Proud to be a Super User!
@tracytran91 , With date table and time intelligence
Try like example
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-13,MONTH)))
13 Month behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-13,Month))
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=6LUBbvcxtKA
Proud to be a Super User!
@tracytran91 , you might use a standard date table in the data model, then leverage DATEADD(Calendar[Date], -13, Month) to retrieve desired month.
User | Count |
---|---|
412 | |
232 | |
85 | |
67 | |
61 |
User | Count |
---|---|
471 | |
268 | |
147 | |
83 | |
74 |