Help PLEASE...Schedule Delivery Date excluding Weekends

sahadevreddy

New Member
Joined
Feb 25, 2014
Messages
3
Hello,

Need your help in getting a formula for the below issue.

I need to provide the schedule end date based on the lead time.In the below table, The numbers under the column Number are fixed and numbers in the Schedule Delivery are based on the Lead time.In this case Lead time is 1 so the items shipped on Monday(referring 2) will deliver on Tuesday(so the number next to Monday in the Scheduled delivery is 3.For the items shipped on Friday will ship on Monday.I need a formula in the Scheduled delivery column which returns the value of the day(Number) on which delivery happens, this should exclude weekends if the delivery falls on weekends.Please do the needful.

DayNumberSchedule DeliveryLead Time
Monday231
Tuesday34
Wednesday45
Thursday56
Friday62

<tbody>
</tbody>
 
Last edited:

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Do you need to use this particular format ? If you can swap over to a date-based system you can use WORKDAYS . (and this will also allow for public holidays, company shutdown days,etc)
list of in dates in A
forumua in B =WORKDAY(A2,$C$2,$E$2:$E$13)
C2 =leadtime
E2:E?? = list of holidays

inoutleadtimehols
24/02/201426/02/14227/02/2014
25/02/201428/02/1418/04/2014
26/02/20143/03/14
27/02/20143/03/14
28/02/20144/03/14
1/03/20144/03/14
2/03/20144/03/14
3/03/20145/03/14
4/03/20146/03/14
5/03/20147/03/14
6/03/201410/03/14
7/03/201411/03/14
9/04/201411/04/14
10/04/201414/04/14
11/04/201415/04/14
12/04/201415/04/14
13/04/201415/04/14
14/04/201416/04/14
15/04/201417/04/14
16/04/201421/04/14
17/04/201422/04/14
18/04/201422/04/14
19/04/201422/04/14
20/04/201422/04/14

<COLGROUP><COL style="WIDTH: 63pt; mso-width-source: userset; mso-width-alt: 3072" width=84><COL style="WIDTH: 48pt" span=3 width=64><COL style="WIDTH: 56pt; mso-width-source: userset; mso-width-alt: 2742" width=75><TBODY>
</TBODY>
 
Upvote 0
Hello Sir,

Thank you very much for the reply and the suggestion.

However I am looking for the format that I have mentioned.Please do the needful.

Regards,
Saha.

Do you need to use this particular format ? If you can swap over to a date-based system you can use WORKDAYS . (and this will also allow for public holidays, company shutdown days,etc)
list of in dates in A
forumua in B =WORKDAY(A2,$C$2,$E$2:$E$13)
C2 =leadtime
E2:E?? = list of holidays

inoutleadtimehols
24/02/201426/02/14227/02/2014
25/02/201428/02/1418/04/2014
26/02/20143/03/14
27/02/20143/03/14
28/02/20144/03/14
1/03/20144/03/14
2/03/20144/03/14
3/03/20145/03/14
4/03/20146/03/14
5/03/20147/03/14
6/03/201410/03/14
7/03/201411/03/14
9/04/201411/04/14
10/04/201414/04/14
11/04/201415/04/14
12/04/201415/04/14
13/04/201415/04/14
14/04/201416/04/14
15/04/201417/04/14
16/04/201421/04/14
17/04/201422/04/14
18/04/201422/04/14
19/04/201422/04/14
20/04/201422/04/14

<tbody>
</tbody>
 
Upvote 0
ok formula in C2 =IF(MOD(B2+$D$2,7)< B2,MOD(B2+$D$2,7)+2,MOD(B2+$D$2,7))

NB 1 that this only works if max schedule days is 5 - so what is your max days
NB2 - does not adjust for holidays/company shutdown days
 
Upvote 0

Forum statistics

Threads
1,216,179
Messages
6,129,333
Members
449,502
Latest member
TSH8125

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