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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
Is there a measure that I can add to the values field to show change over the previous year? I know I can do this with a custom measure for each year, but I would like to see if there's a way without creating a measure for each year.
Essentially, what I'm looking for is 2020 Cases divided by 2019 cases in between "2019 Cases" and "2019 Margin"
Solved! Go to Solution.
Hi @Anonymous
Sure, you can use the below.
Measure = DIVIDE( [Sales], --Your measure or aggregation CALCULATE( [Sales], --Your measure or aggregation SAMEPERIODLASTYEAR( 'Calendar'[Date] ) --Date field from date dimension or your calendar table ) )
Hi @Anonymous
Sure, you can use the below.
Measure = DIVIDE( [Sales], --Your measure or aggregation CALCULATE( [Sales], --Your measure or aggregation SAMEPERIODLASTYEAR( 'Calendar'[Date] ) --Date field from date dimension or your calendar table ) )
Hello @Mariusz,
The response you provided is what I needed, however, I am running into issues where it is not returning either "-100%" for comparison where previous year has a value and current year does not, and the opposite where it should return "100%" when the previous year has no value and current year does have a value.
I know this has to do with division by zero, but haven't been able to correct it yet with either an IF, or IFERROR measure.
Any further suggestions?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
8 | |
8 | |
4 | |
3 |
User | Count |
---|---|
15 | |
15 | |
11 | |
10 | |
10 |