Thanks for the code. I need the user to create a new document to save each
time. They also need to be able to edit it. Proctecting the workbook would
not allow for that. The code is the way i need to proceed.
I'll test out the code!
Thank you

Elena
"Jim Thomlinson" wrote:
> Why not just create a template (.xlt) file or set up your file as read only,
> or even just proctect the workbook. If you use VBA then every time the file
> is to be saved it has to be saved as a new file name. For example if someone
> creates a file from your master document then they must save it under a new
> name. If they then want to modify the file they created they once again have
> to save it as a new name. End users get very frustrated by this. If you still
> want to proceed with VBA here is some code for you to test...
>
> Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
> Cancel = True
> Application.Dialogs(xlDialogSaveAs).Show "C:\Test.xls"
> End Sub
>
> HTH
>
> "Elena" wrote:
>
> > I am trying to disable the "save" command on the menu and tool bar. I would
> > like the user only to be able to "save as". I do not want the user to be
> > able to overwrite the original document. I would like them to save it as a
> > new document if the so wish to do.
> >
> > Could someone tell me the VB code to do this?
> >
> > Thanks in Advance,
> > Elena
> >