Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
rogerl_uk
 
Posts: n/a
Default Can a creation date be added to a footer

On page setup I know how to add the currecnt date to the footer, but can the
creation date be added to the footer?

The "kludge" method is to type the date into the tab and add the tab to the
footer.

I am quite happy to do this using VBA or a macro, but can find no refernce
on how to do this.

If this is only possible in recent versions of Excel, please indicate which
version of Excel you are using.


  #2   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Can a creation date be added to a footer

This code could be in either a regular module to be triggered on demand, or
in a BeforePrint macro to trigger automatically.....

Sub Macro1()
'Adds creation date to LeftFooter
With ActiveSheet.PageSetup
.LeftFooter = "File Created " &
ActiveWorkbook.BuiltinDocumentProperties("creation date")
End With
End Sub

hth
Vaya con Dios,
Chuck, CABGx3



"rogerl_uk" wrote:

On page setup I know how to add the currecnt date to the footer, but can the
creation date be added to the footer?

The "kludge" method is to type the date into the tab and add the tab to the
footer.

I am quite happy to do this using VBA or a macro, but can find no refernce
on how to do this.

If this is only possible in recent versions of Excel, please indicate which
version of Excel you are using.


  #3   Report Post  
Posted to microsoft.public.excel.misc
rogerl_uk
 
Posts: n/a
Default Can a creation date be added to a footer

Thanks Chcuck, your help is much appreciated

"CLR" wrote:

This code could be in either a regular module to be triggered on demand, or
in a BeforePrint macro to trigger automatically.....

Sub Macro1()
'Adds creation date to LeftFooter
With ActiveSheet.PageSetup
.LeftFooter = "File Created " &
ActiveWorkbook.BuiltinDocumentProperties("creation date")
End With
End Sub

hth
Vaya con Dios,
Chuck, CABGx3



"rogerl_uk" wrote:

On page setup I know how to add the currecnt date to the footer, but can the
creation date be added to the footer?

The "kludge" method is to type the date into the tab and add the tab to the
footer.

I am quite happy to do this using VBA or a macro, but can find no refernce
on how to do this.

If this is only possible in recent versions of Excel, please indicate which
version of Excel you are using.


  #4   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Can a creation date be added to a footer

Happy to help, Roger.............and thanks for the feedback.

Vaya con Dios,
Chuck, CABGx3




"rogerl_uk" wrote:

Thanks Chcuck, your help is much appreciated

"CLR" wrote:

This code could be in either a regular module to be triggered on demand, or
in a BeforePrint macro to trigger automatically.....

Sub Macro1()
'Adds creation date to LeftFooter
With ActiveSheet.PageSetup
.LeftFooter = "File Created " &
ActiveWorkbook.BuiltinDocumentProperties("creation date")
End With
End Sub

hth
Vaya con Dios,
Chuck, CABGx3



"rogerl_uk" wrote:

On page setup I know how to add the currecnt date to the footer, but can the
creation date be added to the footer?

The "kludge" method is to type the date into the tab and add the tab to the
footer.

I am quite happy to do this using VBA or a macro, but can find no refernce
on how to do this.

If this is only possible in recent versions of Excel, please indicate which
version of Excel you are using.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Having footer reflect date of last edit/revision? Pheasant Plucker® Excel Discussion (Misc queries) 1 April 26th 06 06:41 AM
Getting an external file creation date as data combustiblemoo Excel Discussion (Misc queries) 0 April 25th 06 01:37 PM
Changing date from =NOW() to Creation Date Kjell Forssen Excel Worksheet Functions 4 April 17th 06 06:18 PM
How do I change the default date format in an Excel Footer Burki Setting up and Configuration of Excel 1 February 4th 05 02:15 AM
change date function format in footer Tori Excel Worksheet Functions 1 January 25th 05 08:18 PM


All times are GMT +1. The time now is 11:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"