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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
Employee
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
Employee
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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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