Hi!

I have need to reset ALL headers and footers to NOT "Link to previous," in documents which have a lot of sections.

I've figured out enough to use the following:
[VBA] Dim mySection As Section, myHF As HeaderFooter

For Each mySection In ActiveDocument.Sections()
For Each myHF In mySection.Headers
myHF.LinkToPrevious = False
Next
For Each myHF In mySection.Footers
myHF.LinkToPrevious = False
Next
Next[/VBA] HOWEVER, this takes quite a while to run, as it's nested loops. Is there a command I'm missing which would universally set all headers and/or footers to not LinkToPrevious? Or perhaps somebody can see a way to make the above code more efficient?

-Curt