ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do I use long date format in a header or footer? (https://www.excelbanter.com/excel-discussion-misc-queries/55820-how-do-i-use-long-date-format-header-footer.html)

Long Date Format in Excel

How do I use long date format in a header or footer?
 


Gord Dibben

How do I use long date format in a header or footer?
 
You don't.

Excel defaults to short date.

You can achieve a modicum of alteration in Windows Regional Settings but not
like Thursday, November 16, 2005

To get that you would need a macro.

Sub DateInFooter()
With ActiveSheet
.PageSetup.CenterFooter = Format(Date, "dddd, MMMM dd, yyyy")
End With
End Sub

Alternative.................

Assume you have date formatted to Thursday, November 16, 2005 in A1

Sub CellInFooter()
With ActiveSheet
.PageSetup.CenterFooter = .Range("A1").text
End With
End Sub


Gord Dibben Excel MVP

On Wed, 16 Nov 2005 16:12:03 -0800, "Long Date Format in Excel" <Long Date
Format in wrote:




All times are GMT +1. The time now is 11:00 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com