- open a word document
- press alt+f8
- in the “macros in:” combobox, select
word commands
- find and select fileSave
- in the “macros in:” combobox, select your current document
- click on create This opens the Visual Basic Editor.
Here is the default script, just in case you delete it.
Sub FileSave()
'
' FileSave Macro
' Saves the active document or template
'
ActiveDocument.Save
End Sub
The document has to be a .dotm file to work with code. It’s a quite easy understandable language.