Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
42 | |
38 |