XL98: Macro to Change the Date/Time Format in a Header/Footer (184501)



The information in this article applies to:

  • Microsoft Excel 98 Macintosh Edition

This article was previously published under Q184501

SUMMARY

In Microsoft Excel, when you use the date code, &[Date], to insert the date in the header or footer of a document, the date appears in the default "MM/DD/YY" format. The time code, &[Time], appears in the default "H:MM AM/PM" format. These date and time formats are based on the time settings in the Date & Time control panel.

To use a date or time format other than the default format, do either of the following:
  • Manually type the time or date in the header or footer. -or-

  • Use a Visual Basic for Applications macro to change the format.
This article contains a sample macro that places the current date in the header in the "MMM DD, YYYY" format.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements.

Visual Basic for Applications Macro Example

To create a macro that places the current date in the header in the "MMM DD, YYYY" format, follow these steps:
  1. Save and close any open workbooks, and then create a new workbook.
  2. Start the Visual Basic Editor (press OPTION+F11).
  3. On the Insert menu, click Module.
  4. Type the following:
          Sub Change_Format()
              ActiveSheet.PageSetup.CenterHeader = Format(Now, "MMM DD, YYYY")
          End Sub
    						
  5. On the View menu, click Microsoft Excel (or press OPTION+F11).
  6. Select cell A1 on the active worksheet and type your name.
  7. On the Tools menu, point to Macro, and then click Macros.
  8. In the Macro dialog box, click Change_Format and click Run.
  9. On the File menu, click Print Preview and verify that the header contains the current date in the format above.
For additional information about changing the date or time format in earlier versions of Microsoft Excel, please see the following article in the Microsoft Knowledge Base:

94870 Excel: Changing the Date or Time Format in a Header or Footer

REFERENCES

For more information about custom formatting, click the Office Assistant, type custom formatting click Search, and then click to view "Create a Custom Number Format."

NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If Microsoft Help is not installed on your computer, please see the following article in the Microsoft Knowledge Base:

179216 OFF98: How to Use the Microsoft Office Installer Program


Modification Type:MinorLast Reviewed:10/10/2006
Keywords:kbdtacode kbhowto kbProgramming KB184501