Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello
I am trying to calculate the number of business days between two dates: For example Between Sept 2 /05 and Sept 7 /05 there are a total of 3 business days (not including Weekends and Holidays). How do you calculate this? Thank you, Susan |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
you might consider using NETWORKDAYS function.
=NETWORKDAYS(start_date, end_date, holidays) the holidays argument is a reference to a list of holidays you want excluded. Labor Day would have to be calculated. =DATE(YEAR(TODAY()),9,7-WEEKDAY(DATE(YEAR(TODAY()),9,1),2)+2) "Susan Hayes" wrote: Hello I am trying to calculate the number of business days between two dates: For example Between Sept 2 /05 and Sept 7 /05 there are a total of 3 business days (not including Weekends and Holidays). How do you calculate this? Thank you, Susan |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Use Excel function =NETWORKDAYS(A1,B1,Holidays) where Cell A1 = Start date (2 Sep) Cell B1 = End date (7 Sep) Holidays = name range containing all the public holidays in the year. -- slc ------------------------------------------------------------------------ slc's Profile: http://www.excelforum.com/member.php...fo&userid=1439 View this thread: http://www.excelforum.com/showthread...hreadid=465791 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculate business days between 2 dates | Excel Discussion (Misc queries) | |||
How can I calculate the number of business days between two dates | New Users to Excel | |||
Want to calculate 3 business days from a certain existing date | Excel Discussion (Misc queries) | |||
How do I calculate the number of business days? | Excel Discussion (Misc queries) | |||
Is there a way to calculate business working days between dates i. | Excel Worksheet Functions |