Sunline
Well-known Member
- Joined
- Oct 6, 2007
- Messages
- 701
- Office Version
- 2016
- Platform
- Windows
Hello all ,
I have this macro which can only copy and transfer data one col at a time .
Im wanting to copy from workbook AAA range A2:BF434326 to workbook BBB destination A2 .
No idea how to alter this macro below .
Many thanks .
I have this macro which can only copy and transfer data one col at a time .
Im wanting to copy from workbook AAA range A2:BF434326 to workbook BBB destination A2 .
No idea how to alter this macro below .
Code:
Sub Test()
Workbooks("AAA.xlsm").Worksheets("Sheet1").Columns(1).Copy Workbooks("BBB.xlsm").Worksheets("Sheet1").Range("A1")
End Sub
Many thanks .