I want to save 2 worksheets from my existing workbook to a new workbook but I can't seem to manage it some how. I have managed to save a single sheet, but could you have a look at my code please and tell me how to make it save 2 sheets, eg "List" and "Results".
- Code: Select all
Dim wb As Workbook
Worksheets("Results").Copy
Set wb = ActiveWorkbook
wb.SaveAs "C:\Res" & Format(Date, "dmmm") & ".xls"
wb.Close
Also, is it possible to include the 'Time' when saving as well as the 'Date'?
Many thanks
Roy.