M
msdrolf
On a master spreadsheet I have on each row data for multiple spreadsheets. I
would like to set up a macro to copy this data into each of the designated
destination spreadsheets. The macro I have is:
Windows(SourceName).Activate
Range(row, 2).Select
Selection.Copy
Windows(dept & ".xls").Activate
Range("C3").Select
ActiveSheet.Paste
The problem is that "Range(row,2).Select" is not working. Is there a code
which would work. Thanks
would like to set up a macro to copy this data into each of the designated
destination spreadsheets. The macro I have is:
Windows(SourceName).Activate
Range(row, 2).Select
Selection.Copy
Windows(dept & ".xls").Activate
Range("C3").Select
ActiveSheet.Paste
The problem is that "Range(row,2).Select" is not working. Is there a code
which would work. Thanks