Move and Copy

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
 
G

Guest

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
 
P

Pete_UK

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top