3 Methods to Print Your Word Document without Header and Footer

There are ways to remove header and footer while printing documents. In today’s article, we will introduce you 3 methods to print your Word document without header and footer.

A lot of Word documents have header and footer inserted. It’s not a big deal when they are on screen. However, if you want to print only the document texts instead of all contents including header and footer, you must come out a way to remove them.

And there are 3 methods we can offer.

Method 1: Remove Header and Footer

The easiest way is, of course, to delete them once for all. Nevertheless, we suggest you taking a backup or preserving a copy of the document with header and footer in case you will need them later.

  1. Firstly, double click to enter the header or footer area.
  2. Then click “Header” or “Footer” under “Design” tab.
  3. Next on drop-down menu, choose “Remove Header” or “Remove Footer” respectively.
  4. Finally, double click on space outside the header or footer area to exit.Click "Header"->Choose "Remove Header"

By the way, this method works best when all headers or footers are the same in the whole document. This means when there are multiple sections where headers and footers do not link to previous, you will have to remove headers and footers repeatedly.

Method 2: Format Header and Footer as Hidden Texts

  1. First thing, enter the header or footer by double clicking.
  2. Then press “Ctrl+ A” to select all contents there.
  3. Next press “Ctrl+ D” to open the “Font” dialog box.
  4. In the box, check the “Hidden” box under “Effects”.
  5. Lastly, click “OK”.Select Header->Open "Font" Dialog Box->Check "Hidden" Box->Click "OK"
  6. Use the same way to hide footers.

Method 3: Run Word Macro

  1. First and foremost, click “Developer” tab then the “Visual Basic”. Or press “Alt+ F11” instead to trigger VBA editor.Click "Developer"->Click "Visual Basic"
  2. Next on the left column in the editor, click on “Normal”.
  3. Then click “Insert” tab and choose “Module”.Click "Normal"->Click "Insert"->Click "Module"
  4. And double click on the new module under “Normal” project to bring out the editing area.
  5. Paste the following codes:
Sub HideHeadersAndFooters()
  Dim objDoc As Document
  Dim nSection As Long
 
  Set objDoc = ActiveDocument
 
  With objDoc
    For nSection = .Sections.Count To 1 Step -1
      .Sections(nSection).Headers(wdHeaderFooterPrimary).Range.Font.Hidden = True
      .Sections(nSection).Headers(wdHeaderFooterEvenPages).Range.Font.Hidden = True
      .Sections(nSection).Headers(wdHeaderFooterFirstPage).Range.Font.Hidden = True
 
      .Sections(nSection).Footers(wdHeaderFooterPrimary).Range.Font.Hidden = True
      .Sections(nSection).Footers(wdHeaderFooterEvenPages).Range.Font.Hidden = True
      .Sections(nSection).Footers(wdHeaderFooterFirstPage).Range.Font.Hidden = True
    Next
  End With 
  Word.Application.Options.PrintHiddenText = False 
End Sub
  1. Lastly, click “Run” button.Click "Run" to Run the Macro

After running the macro, all headers and footers should be gone, you can print them out. The coming macro can be run to show the headers and footers again:

Sub ShowHiddenHeadersAndFooters()
  Dim objDoc As Document
  Dim nSection As Long
 
  Set objDoc = ActiveDocument
 
  With objDoc
    For nSection = .Sections.Count To 1 Step -1
      .Sections(nSection).Headers(wdHeaderFooterPrimary).Range.Font.Hidden = False
      .Sections(nSection).Headers(wdHeaderFooterEvenPages).Range.Font.Hidden = False
      .Sections(nSection).Headers(wdHeaderFooterFirstPage).Range.Font.Hidden = False
 
      .Sections(nSection).Footers(wdHeaderFooterPrimary).Range.Font.Hidden = False
      .Sections(nSection).Footers(wdHeaderFooterEvenPages).Range.Font.Hidden = False
      .Sections(nSection).Footers(wdHeaderFooterFirstPage).Range.Font.Hidden = False
    Next
  End With 
End Sub

Fix Word Problems

Word is not foolproof. Therefore it easily gets shut down or collapsed. This absolutely poses a great danger for our file security. What’s worse, when the unexpected happens, it would be such a pain if you can’t retrieve information back. In a word, you are going to need a Word fix program to help you efficiently recover corrupted files.

Author Introduction:

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

One response to “3 Methods to Print Your Word Document without Header and Footer”

Leave a Reply

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