Reputation: 289
this is my current code:
For z = 3 To 52
Cells(z, 1) = Cells((z - 1), 3) + 7
Next z
Where cell z-1 is a date
I want to add 7 days to the previous cell however it's throwing an error, it this the right way to approach this issue or is there a simpler method?
Thank you
Upvotes: 0
Views: 1102