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

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
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
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
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
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,214,952
Messages
6,122,458
Members
449,085
Latest member
ExcelError

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