Move and Copy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Working with Excel 2003 - I am trying to place a previous work spreadsheet
into another workbook - however, when I attempted to move and copy I can only
insert one worksheet into the other workbook.

Please advise
 
Assuming Book1 is Active and Book2 is already open as well:

Sub Macro1()
Sheets(Array("s1", "s2")).Copy Before:=Workbooks("Book2").Sheets(1)
End Sub
 
If you have both workbooks open, with both file windows visible (use
Window | Arrange | Horizontal to see them both), then you can just
CTRL-drag the worksheet tab from one window to the other to create an
exact copy in the second workbook, i.e. hold down the CTRL key and
drag the tab from one window to the other using the mouse.

Hope this helps.

Pete
 
Back
Top