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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Nester7929
Regular Visitor

Difference from previous value in same column (matrix)

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:

Nester7929_0-1697570869690.png

 

What I'd Like:

Nester7929_0-1697573273434.png

 

 

2 REPLIES 2
Anonymous
Not applicable

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.

Greg_Deckler
Community Champion
Community Champion

@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:



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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