Hello all,
Can anyone help me with this?
I would like to copy selected columns from a worksheet and paste it in cell A1 of another sheet.
the columns to be selected are columns B to D and column H and paste the copied contents in cell A1 of another sheet called TEST1.
Here is the code I have so far:
Range("B2:D2","H2").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Copy
Worksheets("TEST1").Select
Range("A1").Select
ActiveSheet.Paste
The above code is not copying all the contents to the destination worksheet TEST1
Thanks
Can anyone help me with this?
I would like to copy selected columns from a worksheet and paste it in cell A1 of another sheet.
the columns to be selected are columns B to D and column H and paste the copied contents in cell A1 of another sheet called TEST1.
Here is the code I have so far:
Range("B2:D2","H2").Select
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
Selection.Copy
Worksheets("TEST1").Select
Range("A1").Select
ActiveSheet.Paste
The above code is not copying all the contents to the destination worksheet TEST1
Thanks