Working days between dates but without networkdays

Gixerstu

New Member
Joined
Oct 19, 2010
Messages
35
Hi All,

I need to calculate the working days (less bank holidays) between two dates but this will be on a downloadable sheet and I can't trust the users to download the analysis toolpak.

The problem is that I have a supplier lead time that I need to enforce, so I need a date that is X working days from a date entered on the sheet.

Does anyone have any ideas how to acheive this?
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
With start date in A2 and end date in B2 you can use this formula also

=SUM(INT((WEEKDAY(A2-{2,3,4,5,6})+B2-A2)/7))-SUMPRODUCT((holidays>=A2)*(holidays<=B2)*(WEEKDAY(holidays,2)<6))

where holidays is a named range including your holiday dates
 
Upvote 0
Thanks for the replies.

The issue I have is that I am trying to work out the end date.

So what date is 50 working days away from today for example?
 
Upvote 0
OK, normally that would be WORKDAY in the form

=WORKDAY(A2,B2)

where A2 is the start date and B2 days to add

.....but that's also part of Analysis ToolPak

There's a replacement formula on the site that Andrew linked to which accommodates negative days (to get a start date in the past given an end date) or you can use this version if you always want a future date

=SMALL(IF(WEEKDAY(A2+ROW(INDIRECT("1:"&B2*10)),2)<6,IF(COUNTIF(holidays,A2+ROW(INDIRECT("1:"&B2*10)))=0,ROW(INDIRECT("1:"&B2*10)))),B2)+A2

needs to be confirmed with CTRL+SHIFT+ENTER
 
Upvote 0

Forum statistics

Threads
1,224,590
Messages
6,179,750
Members
452,940
Latest member
rootytrip

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