I need to create a backup copy of active Sheet - into a new workbook. So that the new workbook would be created with only Active Sheet in it (no macro, no vba)
I need it to be happening on "After Opening" my Worksheet event
Doing the following:
Private Sub Workbook_Open()
ActiveWorkbook.SaveCopyAs "E:\Projects\FolderName\FileName.xlsm"
End Sub
It copies the entire Workbook, with all the vba code and macro in it, not what I need.
Is there a way to only copy the Active Sheet?
Ideally, I would wanted to have cell reference (I store the file path in a different sheet, in a separated cell named "BackupPath").