Simple question

kohlhammond

New Member
Joined
Aug 27, 2014
Messages
2
I want to enter the date in cell A1 and enter the next consecutive date in cell A6 and continue this format so that there are
four blank rows between dates, I don't want to manually enter in the dates, How can I get excel to recognize this pattern?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.

sheetspread

Well-known Member
Joined
Sep 19, 2005
Messages
5,156
Put 9/1/2014 in cell A1, then this formula in A2:

=IF(MOD(ROW()-1,5)<>0,"",ROW()-1+$A$1)

and drag down
 
Upvote 0

skywriter

Well-known Member
Joined
Feb 15, 2014
Messages
1,642
I just tried something and it worked. I have Excel 2010. Put the first date in A1, type this formula in A6 = A1+1. Then select the blank cells below A1, but not A1 and the formula in cell A6 and drag down. It does what you want.
 
Upvote 0

bschwartz

Well-known Member
Joined
Jan 5, 2013
Messages
1,367
Enter the date in cell A1. Use this formula in cell A2, and fill down:

=IF(MOD(ROW()-1,5)=0,OFFSET(A2,-5,)+1,"")
 
Upvote 0

Taul

Well-known Member
Joined
Oct 24, 2004
Messages
766
Office Version
  1. 2019
Platform
  1. Windows
Or put the first date in cell A1
The second date in cell A6
Select cells A1 to cell A10 (in other words include in the selection 4 blank cells below the last entry)
and drag down. Excel will do the rest.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,195,712
Messages
6,011,259
Members
441,598
Latest member
chrispaulpearce

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
Top