Hi Keith,
One solution is to code it:
you can put the following code into the thisWorkbook object and everytime
you print the format will be what ever you code here:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.CenterFooter = Format(Date, "M-DD-YYYY")
End Sub
All you need to do is modify the "M-DD-YYYY" any way you want. These are
just the date format codes you see when you choose Format, Cells, Number tab,
Date, then Custom. For example "mm/dd/yy" would be another option.
To add this code to the thisWorkbook object
1. Press Alt+F11
2. In the Project window, top left, double-click the thisWorkbook listed in
your file.
3. copy in the above code and modify the "mmmm-d-yy" portion as you desire.
Yes this ones different too.