Converting SEQ fields to text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to covert SEQ fields to regular text or how to find and replace these using the function by the same name? TIA.
 
Run a macro containing the following commands:

Dim afield As Field
For Each afield In ActiveDocument.Fields
If afield.Type = wdFieldSequence Then
afield.Unlink
End If
Next afield


--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
novice04 said:
Does anyone know how to covert SEQ fields to regular text or how to find
and replace these using the function by the same name? TIA.
 
Back
Top