From: trendicoff on
I have a document with lots of different instances of auto-numbering.
I want to hardcode only the auto numbering that is contained in
tables. Is there any way to constrain the ConvertNumbersToText
command to only include or exclude certain items? For instance I know
that the command ActiveDocument.Tables.ConvertNumbersToText is
invalid, but is there any way to make that idea work?
From: Stefan Blom on
You can use

Selection.Range.ListFormat.ConvertNumbersToText

to convert the numbering in the current selection.

--
Stefan Blom
Microsoft Word MVP



"trendicoff" <trendicoff(a)discussions.microsoft.com> wrote in message
news:F8767C80-37C7-4C54-852D-631F8FF8A87E(a)microsoft.com...
>I have a document with lots of different instances of auto-numbering.
> I want to hardcode only the auto numbering that is contained in
> tables. Is there any way to constrain the ConvertNumbersToText
> command to only include or exclude certain items? For instance I know
> that the command ActiveDocument.Tables.ConvertNumbersToText is
> invalid, but is there any way to make that idea work?