many users in our office have a different default directory and we are finding files all over the place, I would like to prevent this.
I have a macro in Word that will open the the SaveAs dialog box for the user in the correct directory for the specific document they are working on, is there a way to do this for excel? I would like to tie it to a read-only or template so when users enter info they must do a FileSaveAs,
The Macro I have written for word is below:
Sub SaveInPolicyLetters()
'
'
With Dialogs(wdDialogFileSaveAs)
.Name = "h:\worddata\policyletters\"
.Show
End With
End Sub
I have a macro in Word that will open the the SaveAs dialog box for the user in the correct directory for the specific document they are working on, is there a way to do this for excel? I would like to tie it to a read-only or template so when users enter info they must do a FileSaveAs,
The Macro I have written for word is below:
Sub SaveInPolicyLetters()
'
'
With Dialogs(wdDialogFileSaveAs)
.Name = "h:\worddata\policyletters\"
.Show
End With
End Sub