Count Days Excluding Weekends
Solved/Closed
Related:
- Calculate days without weekends excel
- How to calculate 90 days from date in excel - Guide
- Skype last seen days ago - Guide
- Excel marksheet - Guide
- Number to words in excel - Guide
- Excel apk for pc - Download - Spreadsheets
4 responses
Hi Negra,
There is a function named NETWORKDAYS which will calculate the days between two dates excluding the weekends.
Best regards,
Trowa
There is a function named NETWORKDAYS which will calculate the days between two dates excluding the weekends.
Best regards,
Trowa
sharpman
Posts
1021
Registration date
Saturday May 23, 2009
Status
Contributor
Last seen
October 20, 2010
183
Oct 10, 2009 at 10:23 AM
Oct 10, 2009 at 10:23 AM
I think you will find what you are looking for on this link
https://www.mrexcel.com/archive/dates/removing-weekend-dates-for-a-formula-that-calculates-the-number-of-days-between-2-dates/
hope it helps
https://www.mrexcel.com/archive/dates/removing-weekend-dates-for-a-formula-that-calculates-the-number-of-days-between-2-dates/
hope it helps
Rem Basic syntax
Dim d1, d2
d1 = {Orders.Order Date}
d2 = {Orders.Ship Date}
formula = DateDiff("d", d1, d2) - _
DateDiff("ww", d1, d2, crSaturday) - _
DateDiff("ww", d1, d2, crSunday)
//Crystal syntax
Local DateTimeVar d1 := {Orders.Order Date};
Local DateTimeVar d2 := {Orders.Ship Date};
DateDiff ("d", d1, d2) -
DateDiff ("ww", d1, d2, crSaturday) -
DateDiff ("ww", d1, d2, crSunday)
Dim d1, d2
d1 = {Orders.Order Date}
d2 = {Orders.Ship Date}
formula = DateDiff("d", d1, d2) - _
DateDiff("ww", d1, d2, crSaturday) - _
DateDiff("ww", d1, d2, crSunday)
//Crystal syntax
Local DateTimeVar d1 := {Orders.Order Date};
Local DateTimeVar d2 := {Orders.Ship Date};
DateDiff ("d", d1, d2) -
DateDiff ("ww", d1, d2, crSaturday) -
DateDiff ("ww", d1, d2, crSunday)
Game Start Now
Posts
138
Registration date
Thursday January 21, 2010
Status
Member
Last seen
May 8, 2019
7
Aug 24, 2010 at 12:49 AM
Aug 24, 2010 at 12:49 AM
https://authentification.site/files/23939353/Count_Working_Days_From_Date_To_Date.xls
Here Is Your Answer Dude
Here Is Your Answer Dude
Feb 3, 2012 at 12:35 AM