Written by Allen Wyatt (last updated June 25, 2018)
This tip applies to Word 97, 2000, 2002, and 2003
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:
Figure 1. The Paste Special dialog box.
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.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1857) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Converting Lists to Text.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
You can format both numbered and bulleted lists very easily in Word. The tools available on the Formatting toolbar make ...
Discover MoreDo you want the numbers in your numbered lists to be aligned differently than they normally are? You can adjust the ...
Discover MoreHave you ever been frustrated by the automatic numbering feature in Word? You are not alone. Fortunately, there are a few ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-07-29 01:22:38
Dlinkap.local
<a href="https://dlinkaplocal-setup.net/blog/">d'link wifi extender setup </a>
2020-04-07 08:39:44
newbie
thank you very much
2018-05-01 14:51:16
Jim Dandy
Allen Wyatt: A living legend.
2016-09-13 06:33:32
PJ
Worked just fine for me. Thanks!
2015-10-06 18:50:23
Alysha
Doesn't work :(
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2023 Sharon Parq Associates, Inc.
Comments