Another macro question: I have recorded a macro for inserting a section break, but would like to include commands for turning off Same as Previous for both First Page and regular headers and footers. Can someone help me with code? Thanks.
Another macro question: I have recorded a macro for inserting a section break, but would like to include commands for turning off Same as Previous for both First Page and regular headers and footers. Can someone help me with code? Thanks.

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
' Insert next page section break
Selection.InsertBreak Type:=wdSectionBreakNextPage
With Selection.Sections(1).
' Turn off Same as Previous for regular header
Headers(wdHeaderFooterPrimary).LinkToPrevious = False
' Idem for first page header
.Headers(wdHeaderFooterFirstPage).LinkToPrevious = False
' Idem for regular footer
.Footers(wdHeaderFooterPrimary).LinkToPrevious = False
' Idem for first page footer
.Footers(wdHeaderFooterFirstPage).LinkToPrevious = False
End With
Thanks again, Hans!