Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
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
)
Best regards,
Yuliana Gu
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
)
Best regards,
Yuliana Gu
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |