Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Putting Bold Words in an Index.
Written by Allen Wyatt (last updated October 12, 2019)
This tip applies to Word 97, 2000, 2002, and 2003
Mori has a document that has "keywords" listed in boldface. He would like to create an index that includes these keywords. Mori wonders if there is a way to automatically mark all the bold phrases so they will appear in an index.
There are a couple of ways you can approach this task. Perhaps the easiest way is to take advantage of Word's AutoMark capability to create your index entries. The trick is to get your words—the ones you want into an index—into their own file. Here's an easy way to do that:
Figure 1. The Find tab of the Find and Replace dialog box.
With the words in their own document, you can easily sort them and look for any duplicates. Get rid of the duplicates so that you have a list of unique words and phrases, one per line. You then need to convert the words to a table; just select them and choose Table | Convert | Text to Table. What you should end up with is a table that has a single column with your words and phrases in that column. (If you end up with multiple columns, you may want to undo the conversion and look for any Tab characters in the list of words and phrases. If you find them, delete them, as they trigger the conversion to add another column.)
With all your words and phrases in a single column, add a second column just to the right of the first one. For the AutoMark feature to work best, the first column needs to contain the words or phrases you want marked in the document and the second column needs to contain how you want those words and phrases to appear in the index.
For instance, you might have multiple variations of the same phrase in the first column, such as "tallied results," "tally results," "tallied responses," and "tally responses." If you want each of these to appear in the index under the phrase "tallying results," then you would place that phrase to the right of each of the original phrases. If you want the word or phrase in the left column to be the same word or phrase used in the index, then just copy it from the left column to the right column.
When you are done with your list, save the document. You can then use what you've created to AutoMark the original document, in this manner:
Figure 2. The Index tab of the Index and Tables dialog box.
That's it. Word uses your list of words as a "roadmap" to what it should mark in your document. When the AutoMark feature is done, you can then create your index as you desire.
If you prefer, you can use a macro to mark all the index entries in your document, based on whether the text is bold or not. The following example simply searches through a document for any bold text. If it locates that text, then it inserts an index entry there.
Sub InsertingIndexEntries() Application.ScreenUpdating = False 'Go to the first page of the document Selection.HomeKey wdStory, wdMove 'Set up the Find and Replace operation Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue .Format = True .MatchWildcards = False .Font.Bold = True End With 'Finds the bold text and inserts an index entry. Do Selection.Find.Execute If Selection.Find.Found Then 'Checks if the Index field was selected 'This occurs if it does not contain any entries If UCase(Selection.Range.Text) <> "NO INDEX ENTRIES FOUND." Then 'Insert an index entry and use the text within 'the selected range as the entry name ActiveDocument.Indexes.MarkEntry _ Range:=Selection.Range, _ Entry:=Selection.Range.Text, _ EntryAutoText:=Selection.Range.Text, _ CrossReference:="", _ CrossReferenceAutoText:="", _ BookmarkName:="", _ Bold:=False, _ Italic:=False, _ Reading:="" 'Move past text that was found and the new index entry Selection.MoveRight wdCharacter, 1, wdExtend Selection.Collapse wdCollapseEnd End If End If Loop While Selection.Find.Found Application.ScreenUpdating = True Application.ScreenRefresh End Sub
Remember that this macro finds any and all bold text in the document, including (possibly) places you may not expect. For instance, if you have some headings that are formatted as bold, those headings will be marked for the index, as well. Further, if you run the macro more than once, you may end up with multiple index entries for each bolded phrase or word. If you need to run it more than once, get rid of the existing index fields before you run it again.
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 (1) 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: Putting Bold Words in an Index.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
Adding an index to a document is an easy task. There are a couple of ways you can do it, as described in this tip.
Discover MoreWhen you construct an index you need to insert all sorts of index fields throughout your document. If you want to later ...
Discover MoreWhen generating an index, Word normally uses a dash to indicate page ranges. You can change the character used for these ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2023-08-02 12:39:53
Stephen
Thank you so much, Allen: this post saved me an enormous amount of time!
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 © 2024 Sharon Parq Associates, Inc.
Comments