Field.UpdateSource method (Word)

Saves the changes made to the results of an INCLUDETEXT field back to the source document.

Syntax

expression. UpdateSource

expression Required. A variable that represents a 'Field' object.

Remarks

The source document must be formatted as a Word document.

Example

This example updates the INCLUDETEXT fields in the active document.

Dim fldLoop As Field 
 
For Each fldLoop In ActiveDocument.Fields 
 If fldLoop.Type = wdFieldIncludeText Then _ 
 fldLoop.UpdateSource 
Next fldLoop

See also

Field Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.