Need to get next Weekday date

paresh0459

New Member
Joined
Jun 30, 2011
Messages
7
Hi, I need to find out next weekday date.
Currently I'm using TODAY() to get today's date. For me Date range is today's date plus 2 working days.
Can you help me achieve this requirement in Excel?

Thanks in advance
Paresh
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Thanks for quick reply.
I'm looking for way to find out the next weekday date automatically for each month going forward.
I have a date range which expands from current date to 2 days in future.
Now these 2 days must be next weekday (Monday or Tuesday) if current day is Thursday or Friday respectively.

Please let me know if there is any way to solve my problem.
Thanks.
 
Upvote 0
Welcome to the board...

Did you try the function described in the link schielrn provided?
 
Upvote 0
I'm using TODAY() in one cell(say A1) to get current date each time I open excel.
Now, I need to get date of Weekday after 2 days in another cell(say A2). Thus, my date range would be from A1 to A2.

Now,
If todays date is 6/30/2011, A2 must have 7/4/2011
If todays date is 7/1/2011, A2 must have 7/5/2011
If todays date is 7/4/2011, A2 must have 7/7/2011
 
Upvote 0
Those examples are not consistent...

7/4 is 2 working days from 6/30
7/5 is 2 working days from 7/1
7/7 is 3 working days from 7/4

if it's because 7/4 is a holiday, then it would look like

If todays date is 6/30/2011, A2 must have 7/5/2011
If todays date is 7/1/2011, A2 must have 7/6/2011
If todays date is 7/4/2011, A2 must have 7/6/2011

In which case you use this (as described in the link provided earlier)

=WORKDAY($A$1,2,$E$1:$E$10)

Where E1:E10 is a list of holidays to be excluded.
 
Upvote 0
I'm sorry for making the mistake. Correct case would be
If todays date is 7/4/2011, A2 must have 7/6/2011

With the formula you provided, do I need to mention all the Weekend dates in Column E? It would be a long list and not a good idea. Is there any way around to do that also?
 
Upvote 0
I'm sorry for making the mistake. Correct case would be
If todays date is 7/4/2011, A2 must have 7/6/2011

With the formula you provided, do I need to mention all the Weekend dates in Column E? It would be a long list and not a good idea. Is there any way around to do that also?

No, just the Holidays.
That's why I wrote
Where E1:E10 is a list of holidays to be excluded.

And it's not actually required, that depends on if you want holidays excluded or not.
If you don't need/want holidays excluded, you just leave out that part

=WORKDAY($A$1,2)
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,259
Members
452,901
Latest member
LisaGo

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