L
Legacy 260385
Guest
I have this macro currently running on an original excel document
Which creates a backup of the document each time the document is opened;
I was wondering, is it possible to remove that particular macro from the backup as opposed to saving the backup as .xlsx?
I don't want to be able to open a backup and the backup makes a backup
That particular macro is running on the main workbook.
Thank You!
Private Sub Workbook_Open()Dim fname
fname = "C:\backup\Economics Tracker - " & Format(Now, "dd mmm yy hh mm AM/PM") & ".xlsm"
ThisWorkbook.SaveCopyAs Filename:=fname
Sheets("Menu").Activate
End Sub
Which creates a backup of the document each time the document is opened;
I was wondering, is it possible to remove that particular macro from the backup as opposed to saving the backup as .xlsx?
I don't want to be able to open a backup and the backup makes a backup
That particular macro is running on the main workbook.
Thank You!