Open both workbooks. Right click the tab of the sheet you wish to copy. Select Move/Copy from the list. Then, select the desitnation workbook and sheet placement, making sure that you check the Make Copy option.
If you wanted to know how to do it using code, maybe this will help you.
Code:
Sub AddCurrentSheet()
ActSh As Object
Set ActSh = ActiveSheet
With Workbooks("MyBook.xls")
'Copy sheet into MyBook.XLS workbook
ActSh.Copy After:=.Sheets(1)
End With
End Sub
Note: This will only work if both items are open and you run the macro from the sheet you want to copy.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.