Edit footer Date

K

kristof

How do I change the date format when I select the auto date input. I would
like to have 21 May, 2008

istead of the default that is listed now? Tried to edit it but this does not
work.
Txs
 
J

JE McGimpsey

kristof said:
How do I change the date format when I select the auto date input. I would
like to have 21 May, 2008

istead of the default that is listed now? Tried to edit it but this does not
work.

IIRC, the date format is set by your system date settings, and it's
limited to a small number of choices.

If you're using XL04 or previous versions, you can use a macro:

Public Sub DateInFooter()
ActiveSheet.PageSetup.LeftFooter = Format(Date, "dd mmm, yyyy")
End Sub

(your example is ambiguous as to whether it should be mmm or mmmm).
 

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

Top