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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Beaty
New Member

Calculate difference between two date values in one row while referencing another row

I'm still fairly new to Power BI.

I am trying to get the time difference for the P21 column for objects with same version(OV_VERSIONPART is the version, OV_OBJECTPART is the document ID). I have tried using datediff and lookupvalue but I keep getting negative values. Not sure what to do anymore. Any help will be appreciated.     PBI2.png

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Beaty,

 

Do you want to calculate the difference between two dates in two adjacent rows that belong to the same object version? If so, please refer to below DAX formula:

diff =
DATEDIFF (
    CALCULATE (
        MAX ( Object[P21] ),
        FILTER (
            ALLEXCEPT ( Object, Object[OV_VERSIONPART] ),
            Object[OV_OBJECTPART]
                = EARLIER ( Object[OV_OBJECTPART] ) - 1
        )
    ),
    Object[P21],
    SECOND
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Beaty,

 

Do you want to calculate the difference between two dates in two adjacent rows that belong to the same object version? If so, please refer to below DAX formula:

diff =
DATEDIFF (
    CALCULATE (
        MAX ( Object[P21] ),
        FILTER (
            ALLEXCEPT ( Object, Object[OV_VERSIONPART] ),
            Object[OV_OBJECTPART]
                = EARLIER ( Object[OV_OBJECTPART] ) - 1
        )
    ),
    Object[P21],
    SECOND
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.