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
Maximus
Frequent Visitor

Calculate Overall Run time with overlapping time intervals

Hi,

 

Need a help for calculating sum of the job elapsed time, here the data between the jobs are overlapped(means few jobs started in parallel). 

Please help.

Here is the sample data.

 

From JOB_ID : 14 to 20 , the Start time and End Time are slightly overlapped ; and the JOB_ID 17 covers the overall period between(14 to 20)

 

Batch_DateJOB_IDPRCS_START_TIMEPRCS_END_TIME
2023-01-1312023-01-13 11:36:342023-01-13 11:37:18
2023-01-1322023-01-13 11:37:342023-01-13 11:39:34
2023-01-1332023-01-13 11:39:532023-01-13 11:44:20
2023-01-1342023-01-13 11:41:032023-01-13 11:41:34
2023-01-1352023-01-13 11:41:512023-01-13 11:43:30
2023-01-1362023-01-13 11:44:362023-01-13 11:45:41
2023-01-1372023-01-13 11:45:572023-01-13 11:47:25
2023-01-1382023-01-13 11:47:042023-01-13 11:47:40
2023-01-1392023-01-13 11:47:042023-01-13 11:47:40
2023-01-13102023-01-13 11:47:042023-01-13 11:47:41
2023-01-13112023-01-13 11:47:042023-01-13 11:47:41
2023-01-13122023-01-13 11:47:042023-01-13 11:47:41
2023-01-13132023-01-13 11:47:052023-01-13 11:47:42
2023-01-13142023-01-13 11:47:412023-01-13 11:49:01
2023-01-13152023-01-13 11:47:442023-01-13 11:48:20
2023-01-13162023-01-13 11:47:582023-01-13 11:49:30
2023-01-13172023-01-13 11:47:582023-01-13 11:50:12
2023-01-13182023-01-13 11:48:002023-01-13 11:49:52
2023-01-13192023-01-13 11:48:002023-01-13 11:49:36
2023-01-13202023-01-13 11:48:002023-01-13 11:49:36

 

 

Excepted output:

Total Elapsed Time for the below group : 2.14 minutes

2023-01-13 11:47:412023-01-13 11:49:01
2023-01-13 11:47:442023-01-13 11:48:20
2023-01-13 11:47:582023-01-13 11:49:30
2023-01-13 11:47:582023-01-13 11:50:12
2023-01-13 11:48:002023-01-13 11:49:52
2023-01-13 11:48:002023-01-13 11:49:36
2023-01-13 11:48:002023-01-13 11:49:36
1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @Maximus ,

You can create a calculated column as below to get it, please find the details in the attachment.

Column = 
VAR _count =
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[PRCS_END_TIME] ),
        FILTER (
            'Table',
            'Table'[Batch_Date] = EARLIER ( 'Table'[Batch_Date] )
                && 'Table'[PRCS_START_TIME] = EARLIER ( 'Table'[PRCS_START_TIME] )
        )
    )
VAR _nendtime =
    CALCULATE (
        MAX ( 'Table'[PRCS_END_TIME] ),
        FILTER (
            'Table',
            'Table'[Batch_Date] = EARLIER ( 'Table'[Batch_Date] )
                && 'Table'[PRCS_START_TIME] = EARLIER ( 'Table'[PRCS_START_TIME] )
        )
    )
VAR _Seconds =
    DATEDIFF ( 'Table'[PRCS_START_TIME], _nendtime, SECOND )
VAR _Minutes =
    INT ( DIVIDE ( _Seconds, 60 ) )
VAR _RemainingSeconds =
    MOD ( _Seconds, 60 )
VAR _Hours =
    INT ( DIVIDE ( _Minutes, 60 ) )
VAR _RemainingMinutes =
    MOD ( _Minutes, 60 )
RETURN
    IF (
        _count > 1
            && 'Table'[PRCS_END_TIME] = _nendtime,
        FORMAT ( _Hours, "00" ) & ":"
            & FORMAT ( _RemainingMinutes, "00" ) & ":"
            & FORMAT ( _RemainingSeconds, "00" ),
        BLANK ()
    )

yingyinr_0-1674629646949.png

Best Regards

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

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.

Top Solution Authors