Group: microsoft.public.word.vba.general
From: =?Utf-8?B?SmVhbi1HdXkgTWFyY2ls?=
Date: Friday, April 04, 2008 11:05 AM
Subject: RE: How do I convert automatic simple list numbering to actual text?

"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