How to fill down weekend dates

Chrissya03

New Member
Joined
Apr 9, 2010
Messages
16
I am putting together a weekend on-call schedule for work. I need each row to show the weekend dates for 2011. For example, Row 1 would say 1/1/2011-1/2/2011, row 2 should say 1/8/2011-1/9/2011, so on and so forth. I cannot get it to auto fill that way, so is there a formula I should use instead?
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Simplest suggestion: keep the Saturday and Sunday dates in separate columns, then you can just add 7 to them to get the following weekend's dates.
 
Upvote 0
Hi, Place the first 2 dates in "A1 & A2", Place formula as shown in "B3" in "A3" then Drag down.
Code:
[COLOR="RoyalBlue"][B]Row No [/B][/COLOR] [COLOR="RoyalBlue"][B]Col(A)     [/B][/COLOR] [COLOR="RoyalBlue"][B]Col(B)               [/B][/COLOR] [COLOR="RoyalBlue"][B]Col(C) [/B][/COLOR]
1.      01/01/2011                               
2.      02/01/2011                               
3.      08/01/2011  =(OFFSET(A3,-2,0))+7
Regards Mick
 
Upvote 0
Or, assuming your first date-range is in A1 (like 01/01/2010-01/02/2010), put the following in A2:-

=TEXT(DATEVALUE(LEFT(A1,FIND("-",A1)-1))+7,"mm/dd/yyyy")&"-"&TEXT(DATEVALUE(MID(A1,FIND("-",A1)+1,10))+7,"mm/dd/yyyy")

That should copy down.
 
Upvote 0
With Jan 1, 2011 in A1

C1 for example =TEXT($A$1+(ROW()-1)*7,"mm-dd-yyyy")&" - "&TEXT($A$1+1+(ROW()-1)*7,"mm-dd-yyyy")

Drag or copy down

Format the date to your preference.
 
Upvote 0

Forum statistics

Threads
1,216,331
Messages
6,130,078
Members
449,556
Latest member
Sergiusz

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