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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
wegemmell
Helper III
Helper III

Calculate the difference between each previous value in a column for matching items only

Good day, Community.

I am working on a project where I need to calculate the difference in [Cycles] for like [Registration] values for each previous instance of an event in a table, where the order of events is based on the [PRIMARYKEY] of the table. The first instance of each can be left blank. 

 

I have worked most of this out in a calculated column, but keep running into the issue of using like registration values only. It seemed simple to me at first, but I am missing something. Any help is greatly appreicated. Below is a link to some sample data. I have included a screenshot as well.

 

EXAMPLE DATA

 

wegemmell_1-1695914358487.png

 

 

1 ACCEPTED SOLUTION
wegemmell
Helper III
Helper III

Disregard... Just got it to work. Thank you for looking, though! Leaving this hear in case anyone else could use.

 

 

Cycles Since Previous = 
VAR CurrentReg = 'Table'[Registration]
VAR CurrentKEY = 'Table'[PRIMARYKEY]
VAR PrevKEY = CALCULATE(
    MAX('Table'[PRIMARYKEY]),
    FILTER(
        'Table',
        'Table'[PRIMARYKEY] < CurrentKEY &&
        'Table'[Registration] = CurrentReg
    )
)
RETURN
IF(
    ISBLANK(PrevKEY),
    BLANK(),
    'Table'[ Cycles ] - 
    CALCULATE(
        MAX('Table'[ Cycles ]),
        FILTER(
            'Table',
            'Table'[PRIMARYKEY] = PrevKEY
        )
    ))

 

wegemmell_1-1695918002726.png

 

 

 

View solution in original post

1 REPLY 1
wegemmell
Helper III
Helper III

Disregard... Just got it to work. Thank you for looking, though! Leaving this hear in case anyone else could use.

 

 

Cycles Since Previous = 
VAR CurrentReg = 'Table'[Registration]
VAR CurrentKEY = 'Table'[PRIMARYKEY]
VAR PrevKEY = CALCULATE(
    MAX('Table'[PRIMARYKEY]),
    FILTER(
        'Table',
        'Table'[PRIMARYKEY] < CurrentKEY &&
        'Table'[Registration] = CurrentReg
    )
)
RETURN
IF(
    ISBLANK(PrevKEY),
    BLANK(),
    'Table'[ Cycles ] - 
    CALCULATE(
        MAX('Table'[ Cycles ]),
        FILTER(
            'Table',
            'Table'[PRIMARYKEY] = PrevKEY
        )
    ))

 

wegemmell_1-1695918002726.png

 

 

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.