S
SS
The following code should copy Columns C and D from one
workbook to another one. However, it is copying columns
A, B, C, and D.
Windows("Work Orders - Master.xls").Activate
Sheets("Drum Prep").Select
Columns("C
").Select
Selection.Copy
Windows("Form.xls").Activate
Sheets("Drum Prep Comparison").Select
Columns("D
").Select
ActiveSheet.Paste
Any ideas on how to fix this quirk?
Thanks
SS
workbook to another one. However, it is copying columns
A, B, C, and D.
Windows("Work Orders - Master.xls").Activate
Sheets("Drum Prep").Select
Columns("C

Selection.Copy
Windows("Form.xls").Activate
Sheets("Drum Prep Comparison").Select
Columns("D

ActiveSheet.Paste
Any ideas on how to fix this quirk?
Thanks
SS