Reply
avatar user
Anonymous
Not applicable

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

Hi @Anonymous

 

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

Hi @Anonymous

 

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.
avatar user
Anonymous
Not applicable

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

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

ikesh_0-1594993833326.png

 

avatar user
Anonymous
Not applicable

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

avatar user

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)