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

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
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
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
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,214,581
Messages
6,120,372
Members
448,957
Latest member
BatCoder

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
Back
Top