I am trying to add a header to just one page in a word document. I have activedocument.Sections(10).Headers(wdHeaderFooterPrimary).LinkToPrevious = False
, but whatever I put in the header is added to all other pages. I have tried looping through all headers with
For Each sec In doc.Sections for each hdr in sec.headers hdr.LinkToPrevious = False nextNext
, but whatever I put in one header is being placed in all.