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
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
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