ConvertNumbersToText Method Example

This example converts the list numbers and LISTNUM fields in the active document to text.

ActiveDocument.ConvertNumbersToText

This example converts the numbers in the first list to text.

ActiveDocument.Lists(1).ConvertNumbersToText

This example converts the preset numbers in myRange to text without affecting any LISTNUM fields.

Set myDoc = ActiveDocument
Set myRange = _
    myDoc.Range(Start:=myDoc.Paragraphs(12).Range.Start, _
    End:=myDoc.Paragraphs(20).Range.End)
myRange.ListFormat.ConvertNumbersToText wdNumberParagraph