View Single Post
 
Old 01-07-2014, 02:10 PM
NeilSC NeilSC is offline Windows 7 64bit Office 2013
Novice
 
Join Date: Dec 2013
Posts: 24
NeilSC is on a distinguished road
Default

I think this macro would replace the fill-in fields with the text that shows up as the result after the field is filled in:

Sub UnlinkFillInFields()

Dim myField As Field

For Each myField In ActiveDocument.Fields
If myField.Type = wdFieldFillIn Then
myField.Unlink
End If
Next myField

End Sub
Reply With Quote