Excel 2007: Add year to footer

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
 
B

Bob Phillips

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)
 
P

Petemeister2k

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top