Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm thinking that in order to include the modified date in the footer, it
might have to be done programmatically. If so, how would I do it. Thanks, Barb Reinhardt |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Paste the following into Worksheets''s code:
'--------------------------------- Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ ThisWorkbook.BuiltinDocumentProperties("last save time").Value End Sub '--------------------------------- HTH -- AP "Barb Reinhardt" a écrit dans le message de news: ... I'm thinking that in order to include the modified date in the footer, it might have to be done programmatically. If so, how would I do it. Thanks, Barb Reinhardt |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I format it to show the date only and not the date and time?
"Ardus Petus" wrote: Paste the following into Worksheets''s code: '--------------------------------- Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ ThisWorkbook.BuiltinDocumentProperties("last save time").Value End Sub '--------------------------------- HTH -- AP "Barb Reinhardt" a écrit dans le message de news: ... I'm thinking that in order to include the modified date in the footer, it might have to be done programmatically. If so, how would I do it. Thanks, Barb Reinhardt |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'd like for it to show Last Modified and the date. I have this so far:
Private Sub Workbook_Open() ActiveSheet.PageSetup.RightFooter = _ Format(ThisWorkbook.BuiltinDocumentProperties("las t save time").Value, "dd-mmm-yyyy") End Sub I assume I could use the same as Worksheet Save. "Ardus Petus" wrote: Paste the following into Worksheets''s code: '--------------------------------- Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ ThisWorkbook.BuiltinDocumentProperties("last save time").Value End Sub '--------------------------------- HTH -- AP "Barb Reinhardt" a écrit dans le message de news: ... I'm thinking that in order to include the modified date in the footer, it might have to be done programmatically. If so, how would I do it. Thanks, Barb Reinhardt |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
---------------------------------
Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ "Last saved: " & format(ThisWorkbook.BuiltinDocumentProperties("las t save time").Value End Sub '--------------------------------- "Barb Reinhardt" a écrit dans le message de news: ... I'd like for it to show Last Modified and the date. I have this so far: Private Sub Workbook_Open() ActiveSheet.PageSetup.RightFooter = _ Format(ThisWorkbook.BuiltinDocumentProperties("las t save time").Value, "dd-mmm-yyyy") End Sub I assume I could use the same as Worksheet Save. "Ardus Petus" wrote: Paste the following into Worksheets''s code: '--------------------------------- Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ ThisWorkbook.BuiltinDocumentProperties("last save time").Value End Sub '--------------------------------- HTH -- AP "Barb Reinhardt" a écrit dans le message de news: ... I'm thinking that in order to include the modified date in the footer, it might have to be done programmatically. If so, how would I do it. Thanks, Barb Reinhardt |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Last msg was wrongly posted!
Sorry, -- AP "Ardus Petus" a écrit dans le message de news: ... --------------------------------- Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ "Last saved: " & format(ThisWorkbook.BuiltinDocumentProperties("las t save time").Value End Sub '--------------------------------- "Barb Reinhardt" a écrit dans le message de news: ... I'd like for it to show Last Modified and the date. I have this so far: Private Sub Workbook_Open() ActiveSheet.PageSetup.RightFooter = _ Format(ThisWorkbook.BuiltinDocumentProperties("las t save time").Value, "dd-mmm-yyyy") End Sub I assume I could use the same as Worksheet Save. "Ardus Petus" wrote: Paste the following into Worksheets''s code: '--------------------------------- Private Sub Workbook_Open() ActiveSheet.PageSetup.CenterFooter = _ ThisWorkbook.BuiltinDocumentProperties("last save time").Value End Sub '--------------------------------- HTH -- AP "Barb Reinhardt" a écrit dans le message de news: ... I'm thinking that in order to include the modified date in the footer, it might have to be done programmatically. If so, how would I do it. Thanks, Barb Reinhardt |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I create a schedule from a list of dates ? | Charts and Charting in Excel | |||
Insert date modified of external file | Excel Discussion (Misc queries) | |||
search for latest date | Excel Worksheet Functions | |||
How do I enter the date last modified in the footer of an Excel d. | Excel Discussion (Misc queries) | |||
Print Footer with Last Print Date field name | Excel Discussion (Misc queries) |