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
Anonymous
Not applicable

Calculating Working Days Between 2 Dates

I have this table:

1.PNG

Step 1 was figuring out how to get the earliest and latest dates for each StageName via the CreatedDate field which I did through these measures:

2.PNG

3.PNG

This helps setup to see how many days was spent in each stage. You can see those values on my Date Diff StageName measure above:

4.PNG

 

While this works as intended I would like to be able to grab working days only. So for 'Discovery' above, it was in that stage for 13 total days. However between 9/26 and 10/9 there are only 9 working days. How can I return that value instead?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi there,
 
Try this, and Please let me know if it work. Good luck!!
 
Work_Days = COUNTROWS(FILTER(CALENDAR('Opportunity History'[Earliest Date],'Opportunity History'[Latest Date]), WEEKDAY([Date])<>1 && WEEKDAY([Date])<>7))

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi there,
 
Try this, and Please let me know if it work. Good luck!!
 
Work_Days = COUNTROWS(FILTER(CALENDAR('Opportunity History'[Earliest Date],'Opportunity History'[Latest Date]), WEEKDAY([Date])<>1 && WEEKDAY([Date])<>7))
CoreyP
Solution Sage
Solution Sage

Hi there!

 

This is quite a common issue. Search the forum for solved posts and I'm certain you'll find it! Pretty sure you'll need to create a date table with some custom columns like "Weekend vs. Weekday," "Holidays," and finally an "Is Workday," which typically returns a 1 or a 0, and then you SUM that column between your two dates.

 

Hope this helps!

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.