Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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