I am still in the learning process so I need a little help with this.
I have this code
worksheets("List").Activate
Range("B2").Activate
For i = 0 To 500
ActiveCell.Offset(i, 0).Select
Selection.Copy
For j = 0 To 8000
Worksheets("Code").Activate
Range("C2").Activate
ActiveCell.Offset(j, 0).Range("A1").Select
ActiveSheet.Paste
j = j + 13
Next j
Next i
End Sub
so basically what I am trying to do is copy a cell from the List worksheet onto another cell on the Code worksheet. But I want it to skip 13 cells every time when it copies a cell over to the Code worksheet. I think there is an issue with the way I nested it, so I want it to copy i from List worksheet, paste it onto j on the Code worksheet, then go back, copy the next i from the List worksheet, then paste it onto (j + 13)th cell on the Code sheet and loop until all i values are copied over. Can someone help correct the loop nesting for me I would really appreciate it! :)
I think what I have is copying the same i value onto j + 13 everytime, which is not what I want.