3 Ways to Print Your Word Document without Footnotes and Endnotes

In this article, we are glad to offer you 3 practical ways to print your Word document without footnotes and endnotes.

Footnotes and endnotes are helpful for illustrating obscure points in Word document. That being said, when it comes to print, you may need that cluster of footnotes and endnotes nowhere on your paper. Sadly, there are no direct ways to exclude them from printing like what you can do with markups. Instead, you can choose following workarounds here to accomplish what you want.Print Your Word Document without Footnotes and Endnotes

Method 1: Operate under “Draft” View

  1. First off, let’s take example of footnotes. Click “View” tab in the Ribbon.
  2. Next click “Draft”.        Click "View"->Click "Draft"
  3. Then click “References” and click “Show Notes”.
  4. In the box open, select either “View footnote area” or “View endnote area” box.
  5. Click “OK”.Click "References"->Click "Show Notes"->Choose a Viewing Area->Click "OK"
  6. On the bottom of the screen, click the drop-down button to choose “All Footnotes”.
  7. Then press “Ctrl+ A” to select all footnotes.
  8. Next press “Ctrl+ D” to open “Font” box.
  9. Check “Hidden” box and click “OK”.Choose "All Footnotes"->Select Footnotes->Open "Font" Box->Check "Hidden"->Click "OK"
  10. Next choose “Footnote Separator” on the drop-down menu.
  11. Select footnote separator.Choose "Footnote Separator"->Select It
  12. Repeat step 8 and 9.
  13. Then choose “Footnote Continuation Separator”.
  14. Select footnote continuation separator.Choose "Footnote Continuation Separator"->Select It
  15. Repeat step 8 and 9.

Now the footnote reference numbers will still be visible in main texts. If you need to hide them as well, follow these steps:

  1. Click “Home” tab and click the drop-down button on “Find”.
  2. Choose “Advanced Find”.Click "Home"->Click the drop down Button on "Find"->Choose "Advanced Find"
  3. Next enter “^f” in “Find what” text box. Enter “^e” if you are deal with endnote references.
  4. Click “Find In” and choose “Main Document”.
  5. Now all footnote reference numbers are in selection. Format them as hidden texts.Enter "^f" in "Find what" Box->Click "Find In"->Choose "Main Document"

Now there is one last move. Open “Word Options” box by clicking “File” then “Options”. In the box open, click “Display” and ensure the “Print hidden text” box is not checked and click “OK”.Click "Display"->Uncheck "Print hidden text" Box->Click "OK"

For endnotes, the procedure is very much the same.

Method 2: Hide Styles

  1. First of all, open “Styles” window by clicking the arrow button in “Styles” group.
  2. For example, if we choose to hide endnotes this time, right click on the “Endnote Text” style.
  3. Choose “Modify”.Open "Styles" Window->Right Click on Endnote Text->Choose "Modify"
  4. In “Modify Style” box, click “Format” and choose “Font”.
  5. In “Font” box, check “Hidden” box and click “OK”.Click "Format"->Click "Font"
  6. Then click “OK” in “Modify Style” box.
  7. Next in “Styles” window, right click on “Endnote Reference”.
  8. Choose “Select All XX Instance(s)”.
  9. Now all endnote references are in selection. Format them as hidden texts.Choose "Endnote Reference"->Choose "Select All XX Instance(s)"
  10. As you see, the endnote separator is still there, so you need to hide it, too. Follow the steps in method 1.

Method 3: Use Word VBA

  1. At first, press “Alt+ F11” to open VBA editor.
  2. Next click “Normal” in the left column.
  3. Then click “Insert” and “Module”.Click "Normal"->Click "Insert"->Click "Module"
  4. Double click to open the new module and paste the following codes:
Sub PrintWithoutFootnotesAndEndnotes()
  Dim objDoc As Document
  Dim nFootnoteRefFontColorIndex As Integer
  Dim nFootnoteTxtFontColorIndex As Integer
  Dim nFootnoteSeparatorFontColorIndex As Integer
  Dim nFootnoteContinuationSeparatorColorIndex As Integer
  Dim nEndnoteRefFontColorIndex As Integer
  Dim nEndnoteTxtFontColorIndex As Integer
  Dim nEndnoteSeparatorFontColorIndex As Integer
  Dim nEndnoteContinuationSeparatorColorIndex As Integer
 
  Set objDoc = ActiveDocument
 
  With objDoc
    '  Save the current color index.
    nFootnoteRefFontColorIndex = .Styles("Footnote Reference").Font.ColorIndex
    nFootnoteTxtFontColorIndex = .Styles("Footnote Text").Font.ColorIndex
    nFootnoteSeparatorFontColorIndex = .Footnotes.Separator.Font.ColorIndex
    nFootnoteContinuationSeparatorColorIndex = .Footnotes.ContinuationSeparator.Font.ColorIndex
 
    nEndnoteRefFontColorIndex = .Styles("Endnote Reference").Font.ColorIndex
    nEndnoteTxtFontColorIndex = .Styles("Endnote Text").Font.ColorIndex
    nEndnoteSeparatorFontColorIndex = .Endnotes.Separator.Font.ColorIndex
    nEndnoteContinuationSeparatorColorIndex = .Endnotes.ContinuationSeparator.Font.ColorIndex
 
    .Styles("Footnote Reference").Font.ColorIndex = wdWhite
    .Styles("Footnote Text").Font.ColorIndex = wdWhite
    .Footnotes.Separator.Font.ColorIndex = wdWhite
    .Footnotes.ContinuationSeparator.Font.ColorIndex = wdWhite
 
    .Styles("Endnote Reference").Font.ColorIndex = wdWhite
    .Styles("Endnote Text").Font.ColorIndex = wdWhite
    .Endnotes.Separator.Font.ColorIndex = wdWhite
    .Endnotes.ContinuationSeparator.Font.ColorIndex = wdWhite
  End With
 
  Dialogs(wdDialogFilePrint).Show
 
  With objDoc
    '  Restore the color index
    .Styles("Footnote Reference").Font.ColorIndex = nFootnoteRefFontColorIndex
    .Styles("Footnote Text").Font.ColorIndex = nFootnoteTxtFontColorIndex
    .Footnotes.Separator.Font.ColorIndex = nFootnoteSeparatorFontColorIndex
    .Footnotes.ContinuationSeparator.Font.ColorIndex = nFootnoteContinuationSeparatorColorIndex
 
    .Styles("Endnote Reference").Font.ColorIndex = nEndnoteRefFontColorIndex
    .Styles("Endnote Text").Font.ColorIndex = nEndnoteTxtFontColorIndex
    .Endnotes.Separator.Font.ColorIndex = nEndnoteSeparatorFontColorIndex
    .Endnotes.ContinuationSeparator.Font.ColorIndex = nEndnoteContinuationSeparatorColorIndex
  End With
End Sub
  1. Lastly, click “Run”.Paste Codes->Click "Run"

Running the macro will print a document without footnotes and endnotes while keep them intact on the original file.

Deal with Word Issues

Word can fail at some time. This absolutely threatens the safety of our valuable documents. However, should you encounter with any problems using Word, there is always a tool for Word recovery.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including recover excel and pdf repair software products. For more information visit www.datanumen.com

One response to “3 Ways to Print Your Word Document without Footnotes and Endnotes”

  1. I used method 1. Worked great.
    However, I now need my notes back and have no idea how to retrieve them. So far I’m unsuccessful in figuring this out. Footnotes are also not functioning properly now for additional notes added after this process was used.
    Am hoping you can post (and email me) the reversal process on this.
    Thank you!

Leave a Reply

Your email address will not be published. Required fields are marked *