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
--
Gary Brown
"Willy Lumague" wrote:
How can I clear the list of built-in footers in Excel?