Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to get the date the file I'm working on was last saved and place that
value into a cell. I don't see a built in function to do this, any help is appreciated. Hal |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Hal
Sub test() Sheets("Sheet1").Range("A1").Value = _ Format(ThisWorkbook.BuiltinDocumentProperties("Las t Save Time"), _ "yyyy-mmm-dd hh:mm:ss") End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "Hal" wrote in message ... I want to get the date the file I'm working on was last saved and place that value into a cell. I don't see a built in function to do this, any help is appreciated. Hal |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Hal
Range("A1").NumberFormat = "dd/mm/yy hh:mm" Range("A1") = FileDateTime(ThisWorkbook.FullName) -- Regards William XL2003 "Hal" wrote in message ... I want to get the date the file I'm working on was last saved and place that value into a cell. I don't see a built in function to do this, any help is appreciated. Hal |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
cell for date last updated | Excel Worksheet Functions | |||
date last updated | New Users to Excel | |||
How to have:= NOW () date/time change only if updated and saved | Excel Worksheet Functions | |||
formula to display "updated" date | Excel Worksheet Functions | |||
How do I keep the date from being updated every day | Excel Discussion (Misc queries) |