Unlink Method Example

This example unlinks the first field in "Sales.doc."

Documents("Sales.doc").Fields(1).Unlink

This example updates and unlinks all the fields in the first section in the active document.

With ActiveDocument.Sections(1).Range.Fields
    .Update
    .Unlink
End With