![]() |
Sheet module VBA not copied
Please help if you are able.
I have found that if I manually copy a sheet by right click on the sheet tab and select "move or copy" then send the sheet to another workbook it takes the VBA code stored in the sheet module with it. But, if I run the VBA to do this, the VBA code stored in the sheet module is not included in the copy. I need to be able to do this from code. Can someone supply me with the VBA to do this (Excel XP/Win 2000)? Your example code will be most appreciated. Thanks in advance for your assistance. |
Sheet module VBA not copied
ActiveSheet.Copy
will copy the sheet with the code in a new workbook Or this between workbooks book2.xls must be open Sub test() Dim mybook As Workbook Dim basebook As Workbook Set basebook = ThisWorkbook Set mybook = Workbooks("book2.xls") basebook.Worksheets(1).Copy after:= _ mybook.Sheets(mybook.Sheets.Count) End Sub -- Regards Ron de Bruin (Win XP Pro SP-1 XL2000-2003) www.rondebruin.nl "moonbeam" wrote in message ... Please help if you are able. I have found that if I manually copy a sheet by right click on the sheet tab and select "move or copy" then send the sheet to another workbook it takes the VBA code stored in the sheet module with it. But, if I run the VBA to do this, the VBA code stored in the sheet module is not included in the copy. I need to be able to do this from code. Can someone supply me with the VBA to do this (Excel XP/Win 2000)? Your example code will be most appreciated. Thanks in advance for your assistance. |
All times are GMT +1. The time now is 05:32 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com