How Remove Header on Select Pages?

  • Thread starter Thread starter Al Franz
  • Start date Start date
A

Al Franz

I have a document with a header on it for my business letters I write.
Document has many letters in it since most are one page, since I don't want
to create a separate file for each. Occasionally though a letter will go to
2 pages in which case I don't want the header info on the 2nd page. Is
there a way to have a document where the header occurs on every page except
for a few select pages where you can turn it off?
 
Hi Al,

Have each letter in a separate Section in the document with Different First
Page Headers in each Section to contain the header and nothing in the
Primary Header of each Section.

--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.
Hope this helps
Doug Robbins - Word MVP
 
Thanks Doug, I was not familar with Section Break. Is there a keyboard
combination to insert a Section Break, similar to Ctrl-Enter for a page
break. Can't seem to find it.
 
You can access the Break dialog box on the Insert menu and then choose
the Section option. But if you want a one-step key command to do the
same, you need a macro for that. Install macro this in your VB code
window and assign a keystroke to it:

Sub SectionBreak()
Selection.InsertBreak Type:=wdSectionBreakNextPage
End Sub

Larry
 
Back
Top