Skip Sundays and update the next working day

sarvadeshavyapta

New Member
Joined
Jul 31, 2015
Messages
30
I've a sheet in which I need a formula to change dates like following. I've tried many things but none seems to be working at one or the other point of time.

If Tomorrow is Sunday then the cells that have the the date of Sunday shall be updated to date of Monday and Cells that have Monday's date shall be updated to Tuesday and so on.Please see the table below.
Untitled.jpg
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Here is a formula that will return the current date, unless today is Sunday, in which case it will return the next day:
Code:
=IF(WEEKDAY(TODAY())=1,TODAY()+1,TODAY())

Note: Depending on what you are doing, perhaps the WORKDAY function may come in handy (it skips weekends).
See: https://www.techonthenet.com/excel/formulas/workday.php

To get the next workday, it would simply be:
Code:
=WORKDAY(TODAY(),1)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,857
Members
449,194
Latest member
HellScout

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