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

DateDiff without weekends

Hi team.

 

I'm using the DATEDIFF function to get the difference between two dates in hours (simple enough) like this 

 

DATEDIFF('Table1 (3)'[(Date1)].[Date],'(Date2)].[Date],HOUR)

 

I only need to exclude Saturday and Sunday. If the date is one of those days, it should be set to Monday 7am.

 

Can you help me on this?

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

This file has a few datediff. Use the one without weekend for your reference on page 2, measure = [Working Days]

https://www.dropbox.com/s/y47ah38sr157l7t/Order_delivery_date_diff.pbix?dl=0

View solution in original post

3 REPLIES 3
v-jayw-msft
Community Support
Community Support

Hi @Jotad710 ,

 

You can use WEEKDAY() function to get the weekday of the date.

Please refer to the measure below.

Measure = 
var sv = SELECTEDVALUE('Table'[date])
var swich = SWITCH(WEEKDAY(sv,2),6,FORMAT(sv+2,"MM/DD/YYYY")&" 7:00:00 AM",7,FORMAT(sv+1,"MM/DD/YYYY")&" 7:00:00 AM",sv)
return
DATEDIFF(swich,TODAY(),HOUR)

6.PNG 

BTW, you can refer to the following topics if you want to calculate datediff between two dates only count working days.

https://community.powerbi.com/t5/Desktop/DATEDIFF-Working-Days/m-p/130662.

https://community.powerbi.com/t5/Desktop/DATEDIFF-without-weekends/m-p/808620.

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
Greg_Deckler
Super User
Super User

I wrote a NETWORKDAYS measure quite a while ago:

https://community.powerbi.com/t5/Quick-Measures-Gallery/Net-Work-Days/m-p/367362#M109

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

This file has a few datediff. Use the one without weekend for your reference on page 2, measure = [Working Days]

https://www.dropbox.com/s/y47ah38sr157l7t/Order_delivery_date_diff.pbix?dl=0

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.