Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear all,
What is the Excel command to display the date the file was last saved? Many thanks Kevin |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Kevin
ActiveCell.Value = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") Here is a example for printing http://www.rondebruin.nl/print.htm#Saved -- Regards Ron de Bruin http://www.rondebruin.nl "Kevin Smith" wrote in message ... Dear all, What is the Excel command to display the date the file was last saved? Many thanks Kevin |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for this. I was after an Excel command rather that
VBA script. Thanks Kevin -----Original Message----- Hi Kevin ActiveCell.Value = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") Here is a example for printing http://www.rondebruin.nl/print.htm#Saved -- Regards Ron de Bruin http://www.rondebruin.nl "Kevin Smith" wrote in message ... Dear all, What is the Excel command to display the date the file was last saved? Many thanks Kevin . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I was after an Excel command
Don't exist Bob have posted this function You can use it in a worksheet cell then use the following UDF (only on workbook level): Function DocProps(prop As String) application.volatile On Error GoTo err_value DocProps = ActiveWorkbook.BuiltinDocumentProperties _ (prop) Exit Function err_value: DocProps = CVErr(xlErrValue) End Function and enter in a cell =DOCPROPS("last save time") (format cell as date) for more about UDFs see: http://www.mvps.org/dmcritchie/excel/getstarted.htm -- Regards Ron de Bruin http://www.rondebruin.nl "Kevin Smith" wrote in message ... Thanks for this. I was after an Excel command rather that VBA script. Thanks Kevin -----Original Message----- Hi Kevin ActiveCell.Value = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") Here is a example for printing http://www.rondebruin.nl/print.htm#Saved -- Regards Ron de Bruin http://www.rondebruin.nl "Kevin Smith" wrote in message ... Dear all, What is the Excel command to display the date the file was last saved? Many thanks Kevin . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date open file with date saved | Excel Worksheet Functions | |||
Last Date Saved | Setting up and Configuration of Excel | |||
Last Saved Date | Excel Discussion (Misc queries) | |||
Date in userform being saved as general not date which affects sor | Excel Programming | |||
Date Last Saved | Excel Programming |