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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
tex628
Community Champion
Community Champion

Calculating working hours

Hello,

 

I have a table that looks like this: 


image.png

 

I need to calculate the hours between the created on/at and the finalized on/at. 
We count all hours that occur, 24/7 except for weekends and significant holidays. 

I've tried alot but i cant find a solution to disregard the weekends and holidays...

 

Anyone have any advice on how to tackle this? 

 

/ Johannes


Connect on LinkedIn
1 ACCEPTED SOLUTION
kohlivinayak
Resolver I
Resolver I

Hi @tex628

 

I tried recreating your scenario and calculating no of days excluding weekend days.

 

So I created a date dimention and with weeknum function got saturdays (6) and sundays(7) in a new column in date dimention.

Screen Shot 2018-07-13 at 10.39.53 AM.png

 

 

 

 

 

 

 

 

 

 

 

 

And in my start and end date table first calculated datediff in no of days

and then no of weekend days in between these two days by creating new column using formula as

 

Weekend Days =
var _stdate = Working[Date 1]
var _enddate = Working[Date 2]
return
CALCULATE(COUNT('Date Dim'[Date]),FILTER('Date Dim','Date Dim'[Day Name] =6 || 'Date Dim'[Day Name] = 7),FILTER('Date Dim','Date Dim'[Date]>= _stdate && 'Date Dim'[Date] <= _enddate))

 

And lastly subtracting both

Screen Shot 2018-07-13 at 10.40.09 AM.png

 

 

 

 

 

 

 

 

 

 

Thanks

Vinayak Kohli

View solution in original post

4 REPLIES 4
kohlivinayak
Resolver I
Resolver I

Hi @tex628

 

I tried recreating your scenario and calculating no of days excluding weekend days.

 

So I created a date dimention and with weeknum function got saturdays (6) and sundays(7) in a new column in date dimention.

Screen Shot 2018-07-13 at 10.39.53 AM.png

 

 

 

 

 

 

 

 

 

 

 

 

And in my start and end date table first calculated datediff in no of days

and then no of weekend days in between these two days by creating new column using formula as

 

Weekend Days =
var _stdate = Working[Date 1]
var _enddate = Working[Date 2]
return
CALCULATE(COUNT('Date Dim'[Date]),FILTER('Date Dim','Date Dim'[Day Name] =6 || 'Date Dim'[Day Name] = 7),FILTER('Date Dim','Date Dim'[Date]>= _stdate && 'Date Dim'[Date] <= _enddate))

 

And lastly subtracting both

Screen Shot 2018-07-13 at 10.40.09 AM.png

 

 

 

 

 

 

 

 

 

 

Thanks

Vinayak Kohli

Thanks for your response!

 

I'm looking for an exact value in hours and not days. This is the baseline for case-handling statistics, the amount of time is often lower than a day.

 

Br,

Johannes


Connect on LinkedIn

Hi @tex628

 

Take the difference in hours and multiply the number of weekend days with 24 and subtract them.

 

for finding time difference you need to concat date and time together.

My excuse will be that it has been a long day!

Your solution works very well. Thank you for the assistance!

 

Br,

J

 


Connect on LinkedIn

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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