A
Audio_freak
Hi there,
From my source file I wish to copy two rows to my target file. They should
however not be copied starting at cell A1, but for instance starting at
cell A22, if that is the first blank row.
What should I write instead of Range ("A1").Select ????
Thanks!
Rows("6:7").Select
Selection.Copy
Workbooks.Open Filename:="c:\Target file.xls"
Windows("Target file.xls").Activate
---> Range("A1").Select
ActiveSheet.Paste
From my source file I wish to copy two rows to my target file. They should
however not be copied starting at cell A1, but for instance starting at
cell A22, if that is the first blank row.
What should I write instead of Range ("A1").Select ????
Thanks!
Rows("6:7").Select
Selection.Copy
Workbooks.Open Filename:="c:\Target file.xls"
Windows("Target file.xls").Activate
---> Range("A1").Select
ActiveSheet.Paste