List of Monday's excluding Holidays

dawnwong

New Member
Joined
Feb 22, 2017
Messages
17
I am trying to prepare a list of Monday's which excludes any holidays lists but I can't seem to get it to work. I tried the WORKDAY function but then it skips the Monday and returns the Tuesday.

Example Cell C4 is the previous Monday 10/02/17
And holidays are listed in cells J5:J30 which includes 10/09/17 which is the next Monday I need the formula to then pull
10/16/2017 which would be the next non-holiday Monday. There are times when 2 Monday's in a row would also be holidays.

Any help is appreciated.
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try this:

Code:
=MIN(IF(ISERROR(MATCH($C4+ROW($A$1:$A$10)*7,$J$5:$J$30,0)),$C4+ROW($A$1:$A$10)*7))

It's an array formula so enter with [Ctrl]+[Shift]+[Enter]

WBD
 
Upvote 0
You're welcome..

The string "0111111" represents the 7 day week beginning with Monday.
MTWTFSS

Set it to 0 = Working day
Set it to 1 = Weekend
 
Upvote 0

Forum statistics

Threads
1,214,424
Messages
6,119,400
Members
448,893
Latest member
AtariBaby

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