How do I display the 'Date Modified' in an Excel worksheet hea
how do i know WHO is the last person who modified?
"Jason Morin" wrote:
Place this macro in the ThisWorkbook module. The header of the active
worksheet will be the last saved (modified) date:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim LastDate As String
Dim wbProp As String
wbProp = "last save time"
LastDate = ActiveWorkbook.BuiltinDocumentProperties(wbProp)
ActiveSheet.PageSetup.CenterHeader = LastDate
End Sub
---
HTH
Jason
Atlanta, GA
"DC Solah" wrote:
I have a series of workbooks being shared on a business server and being
updated by a number of sources as new information becomes available. Because
the date of these updates is important, I would like the workbook to display
the Date Modified in the header of the document when printed.
The only way I know to see this date is via Excel's properties window (or in
the Details view in Windows).
|