Formatting date in footer

  • Thread starter Thread starter jayray
  • Start date Start date
J

jayray

In my footer, I've put &[Date] and it appears correctly as 4/29/07 for
today. How can I make it appear as "April 29, 2007"? I can't figure
out the place to change this format.

Thanks for any information.
 
jayray

Excel uses the Windows short date formatting for the footer date.

You can make some limited changes in Windows Regional Settings to your short
date format.

Not sure you can get April 29, 2007 format but give it a try.

Alternate solution...........use a macro.

Sub PathInFooter()
ActiveSheet.PageSetup.RightFooter = Format(Now, "mmmm dd, yyyy")
End Sub


Gord Dibben MS 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