Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Greetings,
I'm trying to add a column that will calculate the change from the previous year. Unfortunately, the years run from November to October, so I'm having some difficulty since I can't use time intelligence. I have a column called "Member Year" with the integer values 2019, 2020, and 2021. I'd like to calculate the change in Cumulative New, but I'm not certain how to do this since these values are in the same column. Ideally it would also be dynamic, so if other years are added the difference is automatically calculated. Thanks!
What I have:
What I'd Like:
Hi @Nester7929
You can create a measure as follows:
diff =
VAR _pre =
CALCULATE (
[Cumulative New],
FILTER (
ALLSELECTED ( Table ),
EOMONTH ( [Date], 0 ) = EOMONTH ( MAX ( table[Date] ), -1 )
)
)
RETURN
[Cumulative New] - _pre
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Nester7929 You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
Also, check out this video:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.