Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL2000: How to Change the Date or Time Format in a Header or Footer


View products that this article applies to.

This article was previously published under Q213510

↑ Back to the top


Summary

In Microsoft Excel 2000, 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) defaults to the H:MM AM/PM format.

These date and time formats are based on the date and time settings in Microsoft Windows Control Panel.

↑ Back to the top


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 a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:

Microsoft Certified Partners - https://partner.microsoft.com/global/30000104

Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS To use a date or time format other than the default format, use any of the following methods:
  • Enter the date or time manually in a different format.

    - or -
  • Create a macro to change the format.

    - or -
  • Change the short date or time format in Control Panel. This can be done by using the International, Regional Settings, or Regional Options option in Control Panel.

    NOTE: The formatting change applies only to short dates; the long date format is not used in the header or footer.

Macro Code to Add "mmmm d yyyy" Format to Footer

The following macro code places the current date in the footer in the "mmmm d yyyy" format.
Public Sub sampledate()
ActiveSheet.PageSetup.LeftFooter = Format(Now, "mmmm d yyyy")
End Sub
				

↑ Back to the top


References

For additional information, click the article numbers below to view the articles in the Microsoft Knowledge Base:
226118� OFF2000: Programming Resources for Visual Basic for Applications
237356� WD2000: How to Access Sample Macros for Word 2000
212536� OFF2000: How to Run Sample Code from Knowledge Base Articles

↑ Back to the top


Keywords: KB213510, kbprogramming, kbmacro, kbinfo, kbhowto, kbdtacode

↑ Back to the top

Article Info
Article ID : 213510
Revision : 8
Created on : 11/23/2006
Published on : 11/23/2006
Exists online : False
Views : 291