Document.ResetFormFields (Word)
Clears all form fields in a document, preparing the form to be filled in again.
Use the ResetFormFields method to clear fields when a document's fields are not locked. To clear fields when a document's fields are locked, use the Protect method.
Sub ClearFormFields()
ActiveDocument.ResetFormFields
End Sub