P Pete C Sep 18, 2003 #1 Does anyone know if it's possible to insert the last modified date of a document into a excel worksheet? Thanks
Does anyone know if it's possible to insert the last modified date of a document into a excel worksheet? Thanks
R Ron de Bruin Sep 18, 2003 #2 For Excel 2000 and higher you can use this Sub test() Sheets("Sheet1").Range("A1").Value = _ ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") End Sub
For Excel 2000 and higher you can use this Sub test() Sheets("Sheet1").Range("A1").Value = _ ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") End Sub
F FrankB Sep 18, 2003 #3 -----Original Message----- Does anyone know if it's possible to insert the last modified date of a document into a excel worksheet? Thanks . You can also use a "Footer" to put the current date, Click to expand... time, file name etc. etc. and have it print on the bottom of the page.
-----Original Message----- Does anyone know if it's possible to insert the last modified date of a document into a excel worksheet? Thanks . You can also use a "Footer" to put the current date, Click to expand... time, file name etc. etc. and have it print on the bottom of the page.