Display Dates (minus weekends and holidays) Using TODAY() Function

Disarmonious

Board Regular
Joined
Oct 31, 2016
Messages
144
I would like to know if there's a formula that would be able to provide tomorrow's date (the date for the next 4 days) but I need it to be only business days (Mon-Fri) no weekends (Sat or Sun) and no holidays. I have 4 cells next to each other where the first cell represents tomorrow's date, the 2nd cell represents the date for the day after tomorrow, and so forth. I am using TODAY() and TODAY()+1 to achieve dates but this formula does not factor in Saturdays, Sundays, and Holidays, and I need the date to be business days (not landing on ANY weekend or holiday).

Thank you in advance!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
What version of Excel are you using?
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
The workday function will do what you want.
Book1
ABCDEFG
1
2Today29-Jul-2429-Jul-24HolidayList
3Today+130-Jul-2430-Jul-241-Jan-24New Year's Day
4Today+231-Jul-2431-Jul-2419-Feb-24Family Day (AB,NB,ON,SK)
5Today+31-Aug-241-Aug-2429-Mar-24Good Friday
6Today+42-Aug-242-Aug-2420-May-24Victoria Day
7Today+56-Aug-246-Aug-241-Jul-24Canada Day
8Today+67-Aug-247-Aug-245-Aug-24Heritage Day
9Today+78-Aug-248-Aug-242-Sep-24Labour Day
10Today+89-Aug-249-Aug-2414-Oct-24Thanksgiving
11Today+912-Aug-2412-Aug-2411-Nov-24Remembrance Day
12Today+1013-Aug-2413-Aug-2425-Dec-24Christmas
1326-Dec-24Boxing Day
Sheet1
Cell Formulas
RangeFormula
C2:D2C2=TODAY()
C3:C12C3=WORKDAY($C2,1,HolidayList)
D3D3=WORKDAY(TODAY(),1,HolidayList)
D4D4=WORKDAY(TODAY(),2,HolidayList)
D5D5=WORKDAY(TODAY(),3,HolidayList)
D6D6=WORKDAY(TODAY(),4,HolidayList)
D7D7=WORKDAY(TODAY(),5,HolidayList)
D8D8=WORKDAY(TODAY(),6,HolidayList)
D9D9=WORKDAY(TODAY(),7,HolidayList)
D10D10=WORKDAY(TODAY(),8,HolidayList)
D11D11=WORKDAY(TODAY(),9,HolidayList)
D12D12=WORKDAY(TODAY(),10,HolidayList)
Named Ranges
NameRefers ToCells
HolidayList=Sheet1!$F$3:$F$13C3:D12
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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