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 was wondering if anyone could help, v-jiascu-msft (ho is a star!, by the way) help me produced the following DAX:
Bascially it looks at the pervious row if the entityid is the same and calculates the numbers of hours between:
Calculated column Hours = VAR index = [Index] VAR previousTime = CALCULATE ( MIN ( 'msdyn_audithistories'[createdon] ), FILTER ( ALLEXCEPT ( msdyn_audithistories, msdyn_audithistories[msdyn_entityid] ), 'msdyn_audithistories'[Index] = index - 1 ) ) RETURN DATEDIFF ( previousTime, 'msdyn_audithistories'[createdon], HOUR )
However this is obviously 24 hours time period. Does anyone have any suggestions on limiting this to working hours.
I have done this previously through a date table and clacualting the start time and the end time and the hours between these, but suggling seeing the start time is in a different row (previous row) but only if the entitiy ID is the same
Any help would be great
Many thanks
Tim
Solved! Go to Solution.
@tmears,
You can create a previoustime column using DAX below in your table, then calculate the working hours between createdon column and previoustime column following the guide in this video. You would need to create extra tables such as date table and holiday table.
previoustime = CALCULATE(FIRSTNONBLANK('msdyn_audithistories'[createdon],1),FILTER(msdyn_audithistories, msdyn_audithistories[msdyn_entityid]=EARLIER( msdyn_audithistories[msdyn_entityid]) && msdyn_audithistories[Index]=EARLIER(msdyn_audithistories[Index])-1))
Regards,
Lydia
@tmears,
You can create a previoustime column using DAX below in your table, then calculate the working hours between createdon column and previoustime column following the guide in this video. You would need to create extra tables such as date table and holiday table.
previoustime = CALCULATE(FIRSTNONBLANK('msdyn_audithistories'[createdon],1),FILTER(msdyn_audithistories, msdyn_audithistories[msdyn_entityid]=EARLIER( msdyn_audithistories[msdyn_entityid]) && msdyn_audithistories[Index]=EARLIER(msdyn_audithistories[Index])-1))
Regards,
Lydia
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
76 | |
53 | |
37 | |
31 |
User | Count |
---|---|
101 | |
56 | |
51 | |
45 | |
40 |