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: Printing without Footnotes.

Printing without Footnotes

Written by Allen Wyatt (last updated June 26, 2018)
This tip applies to Word 97, 2000, 2002, and 2003


Word allows you to add any number of footnotes to your document. At some point you may want to print your document, but without the footnotes. Word does not have a setting that allows you to print without footnotes, however. Word normally includes the footnotes whenever you print.

You may think that one way to get a printed copy without footnotes is to modify the styles used for footnotes (Footnote Text and Footnote Reference) so their font has the Hidden attribute set. You should then be able to print a copy of the document, without Hidden text, so that footnotes aren't printed. Testing, however, showed that this perfectly logical idea doesn't work. What happens is that the footnotes, which use the Footnote Text style, are indeed hidden. The footnote references in the main text, which use the Footnote Reference style, are also hidden. However, the footnote references within the footnote area are not hidden, even though they are also formatted with the same Footnote Reference style. This behavior is inconsistent and illogical, but it is nonetheless Word's behavior.

The only sure-fire way to print a document without footnotes is to get rid of the footnotes. Since you could have quite a few footnotes in your document, deleting them one by one can get tedious. Such tedium, though, is prime territory for macros. The following macro will delete all the footnotes in a document, print that document to the currently selected printer, and then close the document without saving the changes.

Sub BanishFootnotes()
    Dim iFNCount As Integer
    Dim J As Integer

    iFNCount = ActiveDocument.Footnotes.Count
    For J = iFNCount To 1 Step -1
        ActiveDocument.Footnotes(J).Delete
    Next J
    ActiveDocument.PrintOut
    ActiveDocument.Close SaveChanges:=False
End Sub

It should be noted that if you delete footnotes (or even hide them, as earlier discussed), Word "closes up" the layout of your document. This means that pagination is affected. Thus, a copy of the document printed with footnotes will have different pagination than a copy without footnotes. If you simply want to hide the footnotes and not affect pagination, there is no direct or easy way to do this. Instead, you need to manually "hide" footnotes on each page, perhaps by covering the footnote area with a drawing object (a text box or a rectangle) that has no border. This, of course, won't get rid of the footnotes references in the text; those you will need to tinker with so they are covered by very small drawing objects.

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 (1882) 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: Printing without Footnotes.

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

Creating a Numbered List

Numbered lists provide a 1-2-3 way of organizing your document. You can create numbered lists very easily using the ...

Discover More

Setting Web Fonts

Is your worksheet information destined for a Web page? Here's how you can specify the fonts that should be used when ...

Discover More

Pulling Apart Characters in a Long String

You can easily use formulas to pull apart text stored in a cell. For instance, if you need to pull individual characters ...

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)

Selecting Printing of Color Pictures

Do you want to control whether color pictures in your document are printed or not? It's not quite as easy as it may ...

Discover More

Working with Multiple Printers

Word does not keep printer information associated with documents. You can define a macro for each printer you use and put ...

Discover More

Peculiar Font Differences

Have you noticed page layout differences when you open a document on different systems? There are a number of reasons why ...

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 nine minus 5?

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.