Reputation: 20
I am having trouble incrementing my days correctly. I need them to increment every 6 cells (which is working) but it is starting the increment from cell 1, and i need it to start at cell 4.
here is my function
=DATE(YEAR($B$4),MONTH($B$4),DAY($B$4)+INT((ROW()/6)))
and here is an image of my spreadsheet
Upvotes: 0
Views: 164
Reputation: 96773
Try:
=DATE(YEAR($B$4),MONTH($B$4),DAY($B$4)+INT((ROWS($1:1)/6)))
put anywhere and copy downward.
Upvotes: 2