XL: Changing the Date or Time Format in a Header or Footer

ID: Q94870

The information in this article applies to:

SUMMARY

In Microsoft Excel, when you use the date code (&D) to enter the date in the header or footer of a document, the date appears in the default MM/DD/YY format. The time code (&T) will default to the H:MM AM/PM format.

These date and time formats are based on the date and time settings in the Control Panel both for the Macintosh operating system and for versions 3.0 and later of Microsoft Windows.

If you change the format in the Date and Time settings on the Macintosh, you still have only short dates (5/20/94) and not long dates (May 20, 1994).

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/

To use a date or time format other than the default, do one of the following: NOTE: If you are using a version of the Macintosh operating system prior to System 7.1, the date format cannot be modified, and the time can only be changed between a 12 and 24 hour clock by using the General Control Panel.

Macro Code to Change the Format

Visual Basic, Applications Edition:

The following macro code places the current date in the footer in the "mmmm d yyyy" format.

   ActiveSheet.PageSetup.LeftFooter = Format(Now, "mmmm d yyyy")

Microsoft Excel 4.0 Macro Language:

The following macro code places the current date in the footer in the "dd-mm-yy" format.

   =PAGE.SETUP(,TEXT(NOW(),"dd-mm-yy"))
   =RETURN()

For additional information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q163435
   TITLE     : VBA: Programming Resources for Visual Basic for
               Applications

Additional query words: 98 97 5.00 7.00 2.00 2.01 2.10 2.20 3.00 4.00 custom customized XL98 XL97 XL7 XL5 XL4 XL3
Keywords          : kbmacro kbprg kbdta kbdtacode PgmOthr KbVBA 
Version           : MACINTOSH:2.2,3.0,4.0,5.0,98; WINDOWS:3.2,3.0,4.0,5.0.7.0,97
Platform          : MACINTOSH WINDOWS
Issue type        : kbhowto

Last Reviewed: May 17, 1999