I am copying a range of 10 rows multiple times. There is a cell with only the number 1 in it, say C4, which I need to increment by one in each copy.
For example, if I make 3 copies, C4 needs to be 1, C14 needs to = 2, C24 needs to = 3.
I have tried the following, however it only increments in a pattern where the first copy in C14 = 2 (good), then the 2nd copy C24 = 1 and C34 =2, C44 = 1, C54 =12, etc.
Sub Count()
Dim rng As Range
Set rng = Range("C4")
rng.Offset(10, 0) = rng.Value + 1
End Sub
What is missing or wrong with my code?