Using Network days +1

spotsteven

Board Regular
Joined
Jul 14, 2005
Messages
102
I have to enter a delivery date on sheet... I use the =NOW() +1 to give that.. However weekend and hoilday don't count.. So I would I advoid the weekend/Delivery...date...

IE.. 3/20/2009 would show 3/23/2009 not 3/21/2009

Thanks in advance...
Spotsteven
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

onlyadrafter

Well-known Member
Joined
Aug 19, 2003
Messages
5,703
Platform
  1. Windows
Hello,

can cover the week-end part using

=IF(WEEKDAY(A2,2)=5,A2+3,A2+1)

not sure how to check for holidays though!
 
Upvote 0

Willem!

Board Regular
Joined
Mar 6, 2009
Messages
139
Hi,

Try this:

=IF(NETWORKDAYS(NOW(),NOW()+1)=2,NOW()+1,NOW()+3)

Edit: this only corrects for weekends... not for holidays.... you should go VBA for that one...
 
Last edited:
Upvote 0

barry houdini

MrExcel MVP
Joined
Mar 23, 2005
Messages
20,825
You can use WORKDAY function. It's built in in Excel 2007 but an "Analysis ToolPak" add-in function in earlier versions....., i.e.

=WORKDAY(TODAY(),1,holidays)

where holidays is a named range containing your holidays dates

If you need to install the addin then use

Tools > Add-ins > tick "Analysis ToolPak" > OK
 
Upvote 0

Forum statistics

Threads
1,191,169
Messages
5,985,059
Members
439,937
Latest member
MAlhash

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Top