Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Rsanjuan
Advocate III
Advocate III

How to calculate % change over a custom period from last year?

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!

1 ACCEPTED SOLUTION
sokg
Solution Supplier
Solution Supplier

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

 

 

View solution in original post

1 REPLY 1
sokg
Solution Supplier
Solution Supplier

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

 

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors