INSERT DATE

  • Thread starter Thread starter Pete C
  • Start date Start date
P

Pete C

Does anyone know if it's possible to insert the last modified date of a
document into a excel worksheet?

Thanks
 
For Excel 2000 and higher you can use this

Sub test()
Sheets("Sheet1").Range("A1").Value = _
ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Sub
 
-----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,
time, file name etc. etc. and have it print on the bottom
of the page.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top