I've been using the following Mac Excel Office 2008 macro SUCCESSFULLY (for years):
Sub Autpen()
With ActiveWorkbook
.SaveCopyAs .FullName & ".Backup:" & Format(Now, "YYYY_MM_DD_HH_MM_SS")
End With
End Sub
to save a backup copy in the files' parent directory in a filename.backup folder with a date & time stamp.
Of course the backup folder exists.
Suddenly when going to Office:Mac Excel 2011 I get an error message as follows:
Run-time error '1004':
Method 'SaveCopyAs' of object '_Workbook' failed
This is a really big problem as ALL my Excel files have this. I would greatly appreciate any/all help!
Sub Autpen()
With ActiveWorkbook
.SaveCopyAs .FullName & ".Backup:" & Format(Now, "YYYY_MM_DD_HH_MM_SS")
End With
End Sub
to save a backup copy in the files' parent directory in a filename.backup folder with a date & time stamp.
Of course the backup folder exists.
Suddenly when going to Office:Mac Excel 2011 I get an error message as follows:
Run-time error '1004':
Method 'SaveCopyAs' of object '_Workbook' failed
This is a really big problem as ALL my Excel files have this. I would greatly appreciate any/all help!