UpdateSource Method Example

This example updates the INCLUDETEXT fields in the active document.

For Each aField In ActiveDocument.Fields
    If aField.Type = wdFieldIncludeText Then aField.UpdateSource
Next aField