Formula for =Today() logic

dmill8023

Board Regular
Joined
Aug 24, 2012
Messages
60
Hello All! I am looking for help with logic for a formula.

I am looking to do formulas for =Today()+1 for all days except Saturday - on Saturday I need it to be =Today()+2.

I'm guessing this can be done by building an if statement with weekday and today built in the statement but I need some assistance with the logic.

Any suggestions would be greatly appreciated.
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Try:
Code:
=IF(WEEKDAY(TODAY())=7,TODAY()+2,TODAY()+1)
 
Upvote 0
Perfect, thanks Joe4! I actually came up with the exact formula a minute ago but it is nice to see we're on the same page!

Thanks!
 
Upvote 0
This is the equivalent of finding the next working day when your "weekend" is Sunday only. You can do that with WORKDAY.INTL function (excel 2010 or later), I.e.

=WORKDAY.INTL(TODAY(),1,11)

11 indicates Sunday only as weekend. If you want you can exclude holidays too
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,901
Members
449,097
Latest member
dbomb1414

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