I did everything like you recommended with the button.
I wrote the following function to save my Excel Workbook:
Private Sub CommandButton1_Click()
ActiveWorkbook.SaveAs Filename:="C:\TrialExcel\CheckSave" & Date & ".xls"
End Sub
I got the error '1004':
The file name or path does not exist
The file you're trying to open has been used another application
The name of the workbook is the same
See, I'll have to have the same Excel doc, which, if updated, will be saved in the same folder with the same name. The only difference in the name will be the Date and Time stamp.
What should I do to avoid the error