Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
User | Count |
---|---|
84 | |
77 | |
76 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
45 | |
43 |