bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Printing > Printing without Footnotes

Printing without Footnotes

Summary: Want to print your document without all those footnotes included? It’s not quite as easy as you might think, as this tip discloses. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)

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.

Tip #1882 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003 | 2007


Create and Merge! Using Word's mail merge tool you can quickly and easily combine data from a variety of data sources to create great individualized documents that incorporate your data in ways that you control. WordTips: Mail Merge Magic is an invaluable source for learning how to harness the full power of Word's mail merging capabilities.
 
Check out WordTips: Mail Merge Magic today!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now

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

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)