View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Excel 2007: Add year to footer

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)



"Petemeister2k" wrote in message
...
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