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

Working time between two dates and times excluding lunch-break, weekends, holidays

Hi, 

 

I have two datesfield with times. I want to pick up the numbers of hours between Start and Finish excluding lunchbreak, weekends and holidays. 

 

Start Finish
2022-01-11 08:00:002022-01-13 15:00:00

 

Working hours between 07:00:00 - 16:00:00

Break between 11:00:00-12:00:00

 

 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @IsakCL 

 

You can try the following methods.

New Table:

Date = CALENDAR(MIN('Table'[Start]),MAX('Table'[Finish]))

Column:

Commuting time = [Date]&" "&TIME(7,0,0)
Off duty time = [Date]&" "&TIME(16,0,0)

vzhangti_0-1653294223048.png

Measure:

interval = 
DATEDIFF (
    SELECTEDVALUE ( 'Table'[Start] ),
    SELECTEDVALUE ( 'Table'[Finish] ),
    HOUR
)
    - (
        24
            - HOUR ( MIN ( 'Date'[Off duty time] ) - MIN ( 'Date'[Commuting time] ) )
    ) * 2 - 3

vzhangti_1-1653294308887.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

1 REPLY 1
v-zhangti
Community Support
Community Support

Hi, @IsakCL 

 

You can try the following methods.

New Table:

Date = CALENDAR(MIN('Table'[Start]),MAX('Table'[Finish]))

Column:

Commuting time = [Date]&" "&TIME(7,0,0)
Off duty time = [Date]&" "&TIME(16,0,0)

vzhangti_0-1653294223048.png

Measure:

interval = 
DATEDIFF (
    SELECTEDVALUE ( 'Table'[Start] ),
    SELECTEDVALUE ( 'Table'[Finish] ),
    HOUR
)
    - (
        24
            - HOUR ( MIN ( 'Date'[Off duty time] ) - MIN ( 'Date'[Commuting time] ) )
    ) * 2 - 3

vzhangti_1-1653294308887.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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.