Weekend date

imran ashraf

New Member
Joined
Nov 15, 2016
Messages
39
[FONT=&quot]I want calculations that will automatically give me a given Monday's date on a rolling 8 week cadence. Once past a date the field would give the next Monday two months away's date. I've attached an ex. of what outputs would look like for diven dates. Self-contained is ideal, but can reference tables.
[/FONT]
[FONT=&quot]What I want is 8 weeks worth of Monday dates, but I only want the date to update as it is past. For example if the next Monday is the 12th, once it is the 13th,that cell updates to a Monday 8 weeks away (2/6) but no others change yet. Does that make sense?

[/FONT]
Example date
Week12/7/201612/13/201612/27/20161/31/20162/7/2016
112/12/20162/6/20172/6/20172/6/20174/3/2017
212/19/201612/19/20162/13/20172/13/20172/13/2017
312/26/201612/26/20162/20/20172/20/20172/20/2017
41/2/20171/2/20171/2/20172/27/20172/27/2017
51/9/20171/9/20171/9/20173/6/20173/6/2017
61/16/20171/16/20171/16/20173/13/20173/13/2017
71/23/20171/23/20171/23/20173/20/20173/20/2017
81/30/20171/30/20171/30/20173/27/20173/27/2017

<colgroup><col><col span="5"></colgroup><tbody>
</tbody>
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
This formula will return the next Monday (or today if today is a Monday):
Code:
=IF(WEEKDAY(TODAY(),2)=1,TODAY(),TODAY()+(7-WEEKDAY(TODAY(),3)))
So, to get the next 7 Mondays after that, simply add 7 to date, etc.

So, if you wanted these dates in cells A2:A9, you would simply enter that formula in A2, then the following:
In cell A3: =A2+7
In cell A4: =A3+7
etc.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

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