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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sher
Helper I
Helper I

Calculate Duration Dynamically

AVLS data output for Forum.PNG

 

Hi,

 

Im trying to calculate the duration of an event over time in Power BI, The screenshot above is a sample of the data, what I need to do is calculate how long was spent in Status A,B,C etc. but as you can see the status can change back and forth in the data, so id need to calculate how long a duration it spent in each status but it needs to take into account the status changes , because if i was just to filter it to status A for example theres jumps in Time and vise verca so just summing that up alone wouldnt take into account that it has changed status multiple times within the day and there are time jumps which skew the results or make them look longer than it has actuually spent.

 

The overall aim to create a small sumary chart summing how long in total each status lasted.

 

In the example above it would need to be something like this:

 

Status       Total Time Spent (minutes)

A               15

B               5

C               4

D              0

E               5

F               0

 

 

This would be straightforward to do it in excel however I have many scenarios to do it for so a dynamic solution would be preffered .

 

 

Could anyone help please

 

Thanks

 

 

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @Sher

 

Below is a simplified sample for your reference.

IF = IF(Table1[Status]=LOOKUPVALUE(Table1[Status],Table1[Index],Table1[Index]-1),0,1)
Group = SUMX(FILTER ( Table1, Table1[Index] <= EARLIER ( Table1[Index] ) ),Table1[IF])
DiffTime =
CALCULATE (
    DATEDIFF ( MIN ( Table1[DateTime] ), MAX ( Table1[DateTime] ), MINUTE ),
    ALLEXCEPT ( Table1, Table1[Group] )
)

Then you may get the table as below:

Table = SUMMARIZE(Table1,Table1[Status],Table1[DiffTime])

1.png

 

Regards,

Cherie

Community Support Team _ Cherie Chen
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

5 REPLIES 5
v-cherch-msft
Employee
Employee

Hi @Sher

 

Below is a simplified sample for your reference.

IF = IF(Table1[Status]=LOOKUPVALUE(Table1[Status],Table1[Index],Table1[Index]-1),0,1)
Group = SUMX(FILTER ( Table1, Table1[Index] <= EARLIER ( Table1[Index] ) ),Table1[IF])
DiffTime =
CALCULATE (
    DATEDIFF ( MIN ( Table1[DateTime] ), MAX ( Table1[DateTime] ), MINUTE ),
    ALLEXCEPT ( Table1, Table1[Group] )
)

Then you may get the table as below:

Table = SUMMARIZE(Table1,Table1[Status],Table1[DiffTime])

1.png

 

Regards,

Cherie

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

Hi @v-cherch-msft  , I have got around to trying this and it has worked more or less spot on. Thank you for your help on this.

 

What if I was to introduce another variable (See Screenshot below) The appliance. anf therefore wanted to do the same as before but have a total for the time spent in each status but this time for each appliance. Is this possible?

 

Thanks

 

 

AVLS.PNG

ikesh
Regular Visitor

Hi there, just having a hard time using DAX. How can I solve this one below? Thanks in advance.

ikesh_0-1594993833326.png

 

Hi,

 

I havent got round to trying this solution yet, but it pretty much looks like exactly what i wanted.

 

Thank you for your help on this.

jthomson
Solution Sage
Solution Sage

One approach is to create an index column, then use some conditional logic - say if the statuses are different, then it's zero, otherwise it's the difference in datetime values between this row and the previous row. There's a few threads on this if you search

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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