Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #3  
Old 09-11-2022, 03:22 PM
macropod's Avatar
macropod macropod is offline New to Macros: Cannot remove Header/Footer: MS Word Windows 10 New to Macros: Cannot remove Header/Footer: MS Word Office 2016
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

All you should need is:
Code:
Sub RemoveHeadAndFoot()
Application.ScreenUpdating = False
Dim Sctn As Section, HdFt As HeaderFooter
For Each Sctn In ActiveDocument.Sections
  For Each HdFt In Sctn.Headers
    With HdFt
      If .Exists = True Then .Range.Text = vbNullString
    End With
  Next
  For Each HdFt In Sctn.Footers
    With HdFt
      If .Exists = True Then .Range.Text = vbNullString
    End With
  Next
Next
End Sub
For PC macro installation & usage instructions, see: Installing Macros
For Mac macro installation & usage instructions, see: Word:mac - Install a Macro
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
 

Tags
footer, header, macro word



Similar Threads
Thread Thread Starter Forum Replies Last Post
New to Macros: Cannot remove Header/Footer: MS Word how to remove 'header' 'footer' labels? abrogard Word 2 05-15-2022 06:50 PM
Adding text to the header and footer without removing all other content in the header and footer digitalelise Word VBA 2 10-23-2019 02:58 AM
Add, Resize & Relocate Header & Footer with Macros Sarah123 Word VBA 11 11-13-2018 07:15 AM
New to Macros: Cannot remove Header/Footer: MS Word Can't remove header & footer formatting ... frangipan Word 2 07-11-2014 12:27 PM
How do I remove header and footer captn1 Word 2 09-04-2010 04:14 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:48 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft