Converting numbered list to text

O

OsmarJr

How can I convert the numbers in a numbered list to text by code? I can't use
copy and paste as text because I can't lose the format of the text.
 
K

Klaus Linke

OsmarJr said:
How can I convert the numbers in a numbered list to text by code?
I can't use copy and paste as text because I can't lose the format
of the text.


Hi Osmar,

For the whole document:
ActiveDocument.ConvertNumbersToText

If you just want to convert the numbers in a specific list, select it and
run
Selection.Range.ListFormat.ConvertNumbersToText

Regards,
Klaus
 
Top