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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Johnf78
Regular Visitor

Counting Number of Working Days

Hi All,

 

I would appreciate some help please.

 

I need to count the number of working days between a date range. I have created a new Table using 

MyDate = CALENDARAUTO() and have a Visual Slicer to select the date range. I now want to determine the working hours between those dates so that I can calculate my Utilization %.
 
My expression doesn't work. I have tried a new Measure :
NoOffWorkingHours = COUNTX(MyDate;if(WEEKDAY(MyDate[Date].[Day];2)<6;1;0))*8
 
It is counting weekend days as well as weekdays.  Anyone that can spot my error?
 
In essence, how do I count the number of workdays between the date ranges?
1 ACCEPTED SOLUTION
Johnf78
Regular Visitor

Thanks all,

I manage to solve it by using Sumx in place of Countx

 

NoOffWorkingHours = SUMX(MyDate;if(WEEKDAY(MyDate[Date].[Day];2)<6;1;0))*8

View solution in original post

1 REPLY 1
Johnf78
Regular Visitor

Thanks all,

I manage to solve it by using Sumx in place of Countx

 

NoOffWorkingHours = SUMX(MyDate;if(WEEKDAY(MyDate[Date].[Day];2)<6;1;0))*8

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors