Range.Fields (Word)
Returns a Fields collection that represents all the fields in the range.
For Each aField in ActiveDocument.Fields
aField.Delete
Next aField
Set myRange = ActiveDocument.Sections(1).Footers _
(wdHeaderFooterPrimary).Range
For Each aField In myRange.Fields
aField.Delete
Next aField