View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default How to Include a specific Cell's Contents in a footer Excel 2003

Try this

Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.LeftFooter = Range("$A$1")
End Sub

Mike

"CH-DE-FDS APRIL" wrote:

I want to Include a version ID (contained in a specific cell) as part of a
footer in Excel 2003 what format should I use?

Thanks