1: 2: 3: 4: 5: 6: 7:
Sub FileSave() Dim strName As String strName = InputBox("Type the Document Name", "Document Name") ActiveDocument.SaveAs FileName:=strName ActiveDocument.BuiltInDocumentProperties(wdPropertyTitle) = strName End Sub