The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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