I'm new here in this site but it was informative nevertheless.
i have different columns with different values in it. for example
A B C
1 7 20
2 8 21
3 9 22
4 10 23
my question is. is there a possibility to copy column A then Column b then column c to another sheet continuously.
Here's what i got so far.
Dim iter As Integer
For iter = A To B
Sheets("Sheet2").Range("B1:B50").Copy
Sheets("Sheet1").Range("A5").PasteSpecial
Next
I was thinking that the iter can replace the range or something but unfortunately it didn't work.
thank you in advance and god bless.
i have different columns with different values in it. for example
A B C
1 7 20
2 8 21
3 9 22
4 10 23
my question is. is there a possibility to copy column A then Column b then column c to another sheet continuously.
Here's what i got so far.
Dim iter As Integer
For iter = A To B
Sheets("Sheet2").Range("B1:B50").Copy
Sheets("Sheet1").Range("A5").PasteSpecial
Next
I was thinking that the iter can replace the range or something but unfortunately it didn't work.
thank you in advance and god bless.