Excel 2007: Add year to footer

  • Thread starter Thread starter Petemeister2k
  • Start date Start date
P

Petemeister2k

Hello,

I need to add an autotext field (or whatever the correct term) is so I
can add the copyright year to the footer, so the copyright year can be
updated as needed.

How do I do this? I can easily add the date, but I only want a year field.

Thanks,

Pete
 
Private Sub Workbook_BeforePrint(Cancel As Boolean)
With ActiveSheet.PageSetup

.LeftFooter = Year(Date)
End With
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
I don't have a File menu anymore with Excel 2007, and I'm not sure how to add
this code. Is there a non-code way to do this? I will need to share this
with other people who will maintain the files and want things as simple as
possible.

Regards,

Pete
 
Back
Top