I am trying to create a macro.
A quote document is created in a central location on a server and is then opened for editing.
My macro saves the active file and then I want to be able to set the drive and folder that a SaveAs box opens with so that the user can save it on his own machine in a set location.
All quotes are saved in customer folders within the Quotes folder.
eg L:My DocumentsQuotes<>
Can I set the location that the SaveAs box opens to as L:My DocumentsQuotes?
My macro so far:
Sub Saving()
ActiveDocument.Save
ChangeFileOpenDirectory “L:My DocumentsQuotes”
With Application.Dialogs(wdDialogFileSaveAs)
.Format = wdFormatDocument
.Show
End With
End Sub