How do I go through a whole document and link all the section headers to Header Section 1?
L LEU May 7, 2009 #1 How do I go through a whole document and link all the section headers to Header Section 1?
L LEU May 7, 2009 #2 I got it. See below: With ActiveDocument For i = 1 To .Sections.Count With .Sections(i) .Headers(wdHeaderFooterPrimary).LinkToPrevious = True End With Next i End With
I got it. See below: With ActiveDocument For i = 1 To .Sections.Count With .Sections(i) .Headers(wdHeaderFooterPrimary).LinkToPrevious = True End With Next i End With