EliseFreedman
Programmer
Hi There
I have a spreadsheet which contains data generated from a 3rd party application. I am trying to cycle through all the rows in a particular column in the worksheet and copy the data to a column in another worksheet.
at the moment i have got
although this works, I would rather have it that the data is copied onto another worksheet
How do I do this?
I have a spreadsheet which contains data generated from a 3rd party application. I am trying to cycle through all the rows in a particular column in the worksheet and copy the data to a column in another worksheet.
at the moment i have got
Code:
For i = 2 To 20
Range("J" & i).Value = Range("G" & i).Value
Next i
although this works, I would rather have it that the data is copied onto another worksheet
How do I do this?