How can I clear the list of built-in footers in Excel?

  • Thread starter Thread starter Guest
  • Start date Start date
Assuming you are talking about Print Footers:

Select...
FILE / PAGE SETUP / CUSTOM FOOTER

Then highlight the section (left, center or right) and delete the contents.

Select...
OK / OK

Programatically, you would use something like...
'/============================/
Sub FootersDelete()
With ActiveSheet.PageSetup
.LeftFooter = ""
.CenterFooter = ""
.RightFooter = ""
End With
End Sub
'/============================/

HTH
 
Willy

You don't.

The only thing you can change in there is the user name at
Tools>Options>General and the Author you find under File>Properties>Summary.


Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top