Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hey, everyone, I've been trying to calculate this, but I'm really stuck. Here is the problem:
I want to show in % the difference between months of 2016 and 2017. For example :
January 2016: 10
January 2017: 11
% diff: +10%
Thanks in advance 😄
Hi,
If the following conditions are met
then, this measure will work
=SUM(Data[Value])/CALCULATE(Data[Value]),PREVIOUSMONTH(Calendar[Date]))
Hope this helps.
Hi @nzboan,
You can use below formula to calculate the diff between current year month total and previous year month total.
Measure:
Diff =
VAR CYM =
CALCULATE (
SUM ( Records[Amount] ),
FILTER (
ALLSELECTED ( Records ),
YEAR ( [Date] ) = YEAR ( MAX ( [Date] ) )
&& MONTH ( [Date] ) = MONTH ( MAX ( [Date] ) )
)
)
VAR PYM =
CALCULATE (
SUM ( Records[Amount] ),
FILTER (
ALLSELECTED ( Records ),
YEAR ( [Date] )
= YEAR ( MAX ( [Date] ) ) - 1
&& MONTH ( [Date] ) = MONTH ( MAX ( [Date] ) )
)
)
RETURN
DIVIDE ( CYM - PYM, PYM, 0 )
Regards,
Xiaoxin Sheng
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 26 | |
| 23 | |
| 22 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 35 | |
| 28 | |
| 21 | |
| 19 | |
| 17 |