Hi, I'm new to the Forum and in need of help with a basic macro I'm trying to create. The aim of the macro is to save a new file from an existing one, close this newly created file and after that, open the original file again (the file from where the new one was created). I got the save as and closing the file parts working fine but can't seem to get the original workbook re-opened. Below you'll find the code:
Sub SaveAs_Macro()
'
Dim MyMonth As String
Dim myWorkbook As String
myWorkbook = "Z:\0-Lucia-QA files\Tracking Sheet Tests\New tracking sheet blank.xlsm"
Application.DisplayAlerts = False
ActiveWorkbook.Sheets("Summary").Activate
MyMonth = Format(Range("d2"))
ActiveWorkbook.SaveAs Filename:= _
"Z:\0-Lucia-QA files\Tracking Sheet Tests\" & Range("A2") & ("_") & MyMonth & Format(Now, "-yyyy"), _
FileFormat:=51
ActiveWorkbook.Close True
Workbooks.Open Filename:=myWorkbook
Application.Workbooks(myWorkbook).Activate
End Sub
Any ideas of what I'm doing wrong?
Thanks a lot in advance, I really appreciate all the hard work you people do here 
Best regards!
Bookmarks