Hi
I have a word document where on the On Close event I have the following code:
Sub SaveFilename()
Dim PathAndFileName As String, n As Long
PathAndFileName = Path & "\Letters\.doc"
If Dir(PathAndFileName & ".doc") = "" Then
ActiveDocument.SaveAs (PathAndFileName & ".doc")
Else
n =...