A family of Microsoft word processing software products for creating web, email, and print documents.
AutoExec is run when Word is started, not when a document is created/opened.
Either create an AutoNew and an AutoOpen macro in a standard module in the template:
Sub AutoNew()
ActiveDocument.Fields.Update
End Sub
Sub AutoOpen()
ActiveDocument.Fields.Update
End Sub
or create Document_New and Document_Open event procedures in the ThisDocument module of the template:
Private Sub Document_New()
ActiveDocument.Fields.Update
End Sub
Private Sub Document_Open()
ActiveDocument.Fields.Update
End Sub