"Benjamino5" wrote:
> I have a batch of RTF files in which the author used automatic numbering
> (simple list style, not SEQ fields).
>
> I need to import these RTF files into a program that will choke on the
> automatic numbering, so I need to convert it to plain characters.
>
> How can I do this? If these were fields, I could just unlink them. But I
> don't know how to handle this kind of numbering.
>
Run this macro:
Sub test()
ActiveDocument.ConvertNumbersToText
End Sub