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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors