Im trying to copy cells from one sheet to another. This is the current code im using:
For x = 0 To 10
Worksheets("sheet1".Range("A2".Offset(x, 0).Value = Worksheets("sheet2".Range(currentcell.Offset(x, 0)).Value
Next x
Although every time I run it doesnt work. I cant see whats wrong with the code.
Can anyone sort it out/show me better code?
Thanks.
For x = 0 To 10
Worksheets("sheet1".Range("A2".Offset(x, 0).Value = Worksheets("sheet2".Range(currentcell.Offset(x, 0)).Value
Next x
Although every time I run it doesnt work. I cant see whats wrong with the code.
Can anyone sort it out/show me better code?
Thanks.