
Tips.Net > WordTips Home > Bullets and Numbering > Automatic Numbering > Line Numbering > Converting Lists to Text
Summary: If you have a numbered list in a document, you might want to convert it to regular, non-dynamic text and not lose the numbers that are in the list. This tip explains a couple of techniques you can use to accomplish the task. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)
If you have used Word's numbered list feature, you have probably noticed that the numbers at the beginning of each list item cannot be selected. Further, as you delete or add items in your list, the other items in the list are renumbered to compensate for your actions.
In most instances, this is exactly how you expect and want your numbered lists to work. There may be times, however, when you want the lists to be "frozen," meaning that the numbers won't change. In these instances, the automatic numbering feature can seem more of a frustration than a nicety.
There are two ways around this problem. The first, which I refer to as the brute force method, involves a bit of cutting and pasting. All you need to do is follow these general steps:
These actions replace the existing dynamic list with the text of itself, and Word automatically converts the automatic numbering to text.
There are, of course, several different drawbacks to this. First of all, you lose any other special formatting you may have in the list items. If you have some words formatted differently than the paragraph defaults (for instance, bold or italic words), these are eliminated and must be manually redone.
An easier approach is to use a macro to do the job for you. VBA includes a special method that removes the drawbacks already noted and does the conversion much cleaner. None of your other formatting, other than the automatic list numbers, is affected. The following is the ListPlain macro:
Sub ListPlain()
Dim lp As Paragraph
For Each lp In ActiveDocument.ListParagraphs
lp.Range.ListFormat.ConvertNumbersToText
Next lp
End Sub
Notice how short the macro is. It also runs very quickly, and affects all numbering in the entire document. Any numbered lists that rely on Word's automatic numbering are affected, as are any LISTNUM fields.
Tip #1857 applies to Microsoft Word versions: 97 2000 2002 2003 2007
Tremendous Table Tips! We often take tables for granted, but Word includes some very powerful ways you can present your tabular data. Discover how to make your tables better, easier to understand, and more effective.
Check out WordTips: Terrific Tables today!
Discover how to use Word's mail merge tool to create your own custom documents in just minutes. Great e-book answers all your questions. (more information...)
Ask a Word Question
Make a Comment
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips