-----Original Message-----
Maybe this sub will help out a bit, whilst awaiting better
responses? ...
Put in a general module.
Remark out the left and centre footer lines if not required.
Change the default footers (e.g. "MyLeftF", etc) to
taste.
[reformatted]
Sub SetFooter()
With ActiveSheet.PageSetup
.LeftFooter = InputBox("SetLeftFooter", _
"Enter Left Footer phrase", "MyLeftF")
.CenterFooter = InputBox("SetCentreFooter", _
"Enter Centre Footer phrase", "MyCentreF")
.RightFooter = InputBox("SetRightFooter", _
"Enter Right Footer phrase", "MyRightF")
End With
End Sub
...
This does allow entering text for the footer parts, but headers and footers are
rich text, so this doesn't allow for formatting. An alternative would be using
Application.Dialogs(xlDialogPageSetup).Show
to display the Page Setup dialog, but I have no idea how to restrict the user to
entering only the right footer.
--
Never attach files.
Snip unnecessary quoted text.
Never multipost (though crossposting is usually OK).
Don't change subject lines because it corrupts Google newsgroup archives.
.