I have so far written this code:
And it will move the two sheets to a new workbook, but I only want it to copy values and formats. What needs to be added to this code to only copy the values and formats? I have tried numerous things I saw on google, but nothing worked!
Code:
Workbooks.Open Filename:="C:\Testing\Test.xls"
With Sheets(Array("Sheet1", "Sheet2")).Select
Range("A1:EZ48").Select
ActiveWindow.SelectedSheets.Copy
ActiveWorkbook.SaveAs Filename:="C:\Testing_Spreadhseet" & ActiveWorksheet.Name & Format(Date, "mmddyyyy") & ".xls"
End With
End Sub