If I wanted to Select to the end of data in column A and then copy / paste it I could use:
But is there a way to select multiple, non-adjacent columns?
E.g
I have data going from A1 to A56 and some corresponding data in C1 to C56, F1 to F56 and H1 to H56
How do i select them ALL at the same time and then copy / paste to a new sheet?
Next week that data will be in
A1:A325
C1:C325
F1:F325
H1:H325
So I can't just define the range, it has to go to the end cell.
Any help much appreciated
Code:
Range("A1").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Range("G1").Select
ActiveSheet.Paste
But is there a way to select multiple, non-adjacent columns?
E.g
I have data going from A1 to A56 and some corresponding data in C1 to C56, F1 to F56 and H1 to H56
How do i select them ALL at the same time and then copy / paste to a new sheet?
Next week that data will be in
A1:A325
C1:C325
F1:F325
H1:H325
So I can't just define the range, it has to go to the end cell.
Any help much appreciated
Last edited: