Next Monday unless holiday, then Tuesday

sleepyowl86

New Member
Joined
Aug 26, 2014
Messages
14
I'm needing a formula that, starting with today (whatever day that may be), returns the date of the following Monday unless it is a holiday, then Tuesday. It would save me so much time if I didn't have to change all the dates on a bunch of paperwork weekly.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Do you have a List of holidays stored somewhere in the worksheet?
 
Upvote 0
To get the next monday's date, you use a formula like A1+(7-WEEKDAY(A1,2)+1) and for the Next Tuesday, A1+(7-WEEKDAY(A1,2)+2)

So it all depends, you can VLOOKUP Monday's date on your list of holidays and if its is not found, i.e £N/A, then it is not a holiday, so you use the MONDAY formula to get your result or if it is found on your holiday list, then the formula for Tuesday is used instead

Without having sample data showing your structure, i cant say more

hope this helps
 
Upvote 0
Either of the following would work


Excel 2010
ABCDE
1
2Thu 12-Oct-17Tue 17-Oct-17Tue 17-Oct-1716-Oct-17
311-Nov-17
4
6b
Cell Formulas
RangeFormula
B2=WORKDAY.INTL(A2,1,"0111111")+ISNUMBER(MATCH(WORKDAY.INTL(A2,1,"0111111"),Holidays,0))
C2=IF(WEEKDAY(A2,2)=1,A2,A2+8-WEEKDAY(A2,2))+ISNUMBER(MATCH(IF(WEEKDAY(A2,2)=1,A2,A2+8-WEEKDAY(A2,2)),Holidays,0))
Named Ranges
NameRefers ToCells
Holidays='6b'!$E$2:$E$3
 
Upvote 0

Forum statistics

Threads
1,216,565
Messages
6,131,433
Members
449,652
Latest member
ylsteve

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