View Single Post
 
Old 05-26-2012, 05:09 PM
Cobb78 Cobb78 is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: May 2012
Posts: 10
Cobb78 is on a distinguished road
Default

Nevermind. I found a macro that works perfectly to convert numbered lists to regular text and maintains all the formatting in the lists as well as in the numbers themselves.

Quote:
Sub ListPlain()
Dim lp As Paragraph

For Each lp In ActiveDocument.ListParagraphs

lp.Range.ListFormat.ConvertNumbersToText
Next lp
End Sub

Last edited by Cobb78; 05-26-2012 at 05:10 PM. Reason: macro looked goofy as pasted.
Reply With Quote