
Welcome toWord2007.Tips.Net
Beauty Tips
Car Tips
Gardening Tips
Home Tips
The Date Your Document was Last Printed
Printing More than One Page per Sheet
Printing without Document Markup
Limiting the Display of Reviewer Comments
Turning Off Notification of Formatting Inconsistencies
Stephanie wondered if there is a way in Word to force the updating of all fields and links in a document when either opening or saving (closing) the file. She knows that she can force updates prior to printing, but she was looking, specifically, for the open or close method of updating.
You can automatically update both fields and links when you print a document, but Word treats the two items differently when you are opening a file. Word provides a way to always update your links when opening a document. You can do this by following these steps:
That setting should make sure that all your links are always up to date. If you want to update the fields when the document is opened, you'll need to use a macro to accomplish the task. Specifically, you'll need to use either an AutoOpen or AutoClose macro, depending on whether you want to update the fields when the document opens or closes. The following is an example of an AutoOpen macro you can use.
Sub AutoOpen()
With Options
.UpdateFieldsAtPrint = True
.UpdateLinksAtPrint = True
End With
ActiveDocument.Fields.Update
End Sub
Note that the macro makes sure that the options are set to force updating the fields and links when printing occurs, then it updates all the members of the Fields collection in the document. If you, instead, wanted to update the fields at closing, you could use this macro:
Sub AutoClose()
ActiveDocument.Fields.Update
End Sub
This macro is much shorter because there is no need to set the update-on-print options when you are exiting the document.