Are you saying that the code does work for you in Excel 2007? It does work for me.The VBA option listed is helpful, but it seems to mean that EXCEL 2007 does not offer footer date formatting.
We only 'Close' threads when there is a breach of the forum rules. We don't close threads when a satisfactory answer has been received because that would stop the cases where somebody with more knowlege comes along later and says, "All you need to do is this and that and you've done it". That scenarion is not uncommon in a public forum like this.You may close this thread down now.
Sub FormatDate
With ActiveSheet.PageSetup
.CenterFooter= Format(Now(), "mmmm d, yyyy")
End With
End Sub
MsgBox Format(Now(), "yyyy.mm.dd")