Creating an AutoText Reference List

Written by Allen Wyatt (last updated September 24, 2022)
This tip applies to Word 97, 2000, 2002, and 2003


AutoText entries are a great way to help speed up both data entry and data standardization in Word documents. As you create more and more AutoText entries, you may cast about for a way to print a list of those entries. This list could then be used as a "reference guide" to what entries are available on a system.

Word provides a quick way to print AutoText entries: On the Print dialog box choose AutoText Entries in the Print What drop-down list. However, the list that is printed may not be to your liking. (You may want the list formatted differently to meet your specific needs.)

One way to create the type of list you need is to change how you print it. Windows provides a generic print driver that allows you to make a plain-text file from any printout. If you look at the list of printer drivers installed on your system, you may see one called "Generic / Text Only." If you don't, go through the steps to add this printer driver. (The steps you follow depend on the version of Windows you are using; in all versions there should be a generic printer driver available called "Generic / Text Only.")

When you want to create your AutoText reference list, follow these steps:

  1. Choose File | Print to display the Print dialog box.
  2. Using the Name drop-down list at the top of the dialog box, choose the Generic / Text Only printer. (You've just changed what printer driver will be used to create the document.)
  3. Select the Print to File check box.
  4. Using the Print What drop-down list, choose AutoText Entries. (See Figure 1.)
  5. Figure 1. The Print dialog box.

  6. Click OK. A dialog box appears, asking you for a file name for the output file.
  7. Using the controls in the dialog box, select a location for the output file. Specify a name that makes sense for what you are creating, such as "My AT Entries."
  8. Click OK and the output file is created.

The output file is saved in the location you specified, using the name you specified. The file name extension is PRN. You can load this file into Word or into any other text editor; it is plain text. You can then format it as desired, as you would with any other document. When satisfied with your formatting, you can then print the document to create your reference list.

It should be noted that if you open the PRN file in Word, and you see a bunch of gibberish in the file, you probably didn't follow step 2 in the above steps. Only the Generic / Text Only printer driver will create a plain text file. If you use a different printer driver, the output file includes the codes necessary to control the printer—what you see as gibberish.

There are, of course, ways that you can create your reference list using macros. The following is an example of a macro that will step through all the open templates and construct a document consisting of all the AutoText entries in all those templates.

Sub ListEntries()
    Dim oTemplate As Word.Template
    Dim oEntry As Word.AutoTextEntry
    Dim strReport As String

    For Each oTemplate In Application.Templates
        strReport = strReport & oTemplate.FullName & vbCr
        For Each oEntry In oTemplate.AutoTextEntries
            With oEntry
                strReport = strReport & .Name & vbTab & .Value & vbCr
            End With
        Next
        strReport = strReport & String$(3, vbCr)
    Next
    With Application.Documents.Add.StoryRanges(wdMainTextStory)
        .Text = strReport
    End With
End Sub

This macro is very simple; it could be expanded to perform more complex tasks, such as formatting the information added to the new document.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (5813) applies to Microsoft Word 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Swapping Two Numbers

When programming macros, variables are used extensively. At some point you might want to exchange the values held by two ...

Discover More

Setting Cell Width and Height Using the Keyboard

Hate to take your hands off the keyboard? Here are a couple of ways you can reject the mouse and still adjust the height ...

Discover More

Ignoring Punctuation in Names

If you have a word that includes punctuation as part of the word itself, then you may be frustrated by how Word treats ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (menu)

Changing Fonts for AutoText Entries

If you use AutoText entries a lot, you may wonder if you can change the formatting stored with your existing entries. The ...

Discover More

Adding an AutoText Entry

Creating custom AutoText entries is not only extremely helpful, but very easy. This tip explains how.

Discover More

Renaming an AutoText Entry

There are a couple of ways that you can rename an existing AutoText entry. This tip describes the techniques you can use, ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 1?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

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.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.