Ok, the "module not found" error is caused by a missing macro.
Now here is a macro/vba code which will copy a sheet and paste it into a new workbook:
Sub copysheet()
Application.DisplayAlerts = False
Sheets("Sheet1").UsedRange.Copy
Workbooks.Add
ActiveSheet.Cells(1, 1).PasteSpecial xlPasteAll
Application.CutCopyMode = False
Application.DisplayAlerts = True
End Sub
Just change the first "Sheet1" to the sheet name that you are copying - this should by pass the module not found error
If you just need values and no formulas or formatting change xlPasteAll to xlPasteValues
Thanks,
Adam
Bookmarks