D
Doug
How do I enter a date command in a header that displays only the current year
and not the complete date?
and not the complete date?
KC said:You have to use a workbook macro.
Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.LeftHeader = Format(Date, "yyyy")
End Sub