How would you calculate the % change over the same months from this year to last year?
For example, I would like to calculate the % change from January to April of this year to January to April of last year?
I can't do YTD calculation or calculate using Quarters....any suggestions?
Please assume the date field is called ProjDate.
Thanks!
Solved! Go to Solution.
I assume you have a total sales measure
Try this
Total Sales Last Year = CALCULATE ( [Total Sales], SAMEPERIODLASTYEAR(YourDateTable[ProjDate]))
Diff This Year - Last Year = IF(ISBLANK([Total Sales Last Year]), BLANK(),[Total Sales] - [Total Sales Last Year])
% Diff = DIVIDE ([Diff This Year - Last Year],[Total Sales Last Year])
Also watch this video https://www.youtube.com/watch?v=JNt-_QByeLk
I assume you have a total sales measure
Try this
Total Sales Last Year = CALCULATE ( [Total Sales], SAMEPERIODLASTYEAR(YourDateTable[ProjDate]))
Diff This Year - Last Year = IF(ISBLANK([Total Sales Last Year]), BLANK(),[Total Sales] - [Total Sales Last Year])
% Diff = DIVIDE ([Diff This Year - Last Year],[Total Sales Last Year])
Also watch this video https://www.youtube.com/watch?v=JNt-_QByeLk
User | Count |
---|---|
117 | |
62 | |
60 | |
47 | |
40 |
User | Count |
---|---|
111 | |
63 | |
62 | |
51 | |
48 |