Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
LDL
 
Posts: n/a
Default Time Date Last Modified

I am sharing a worksheet with another person and we both are updating it
often throughout the day. I'd like to have a cell display the last time and
date it was modified. Can this be done? Thanks, Diane


  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Only by using VBA


http://tinyurl.com/apq8b

Regards,

Peo Sjoblom

"LDL" wrote:

I am sharing a worksheet with another person and we both are updating it
often throughout the day. I'd like to have a cell display the last time and
date it was modified. Can this be done? Thanks, Diane



  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

Here is an UDF

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

Now you can use the following formula in one of your cells:
=DocProps("Last save time")

Obviously, the file has to have been saved.

--

HTH

Bob Phillips

"LDL" wrote in message
...
I am sharing a worksheet with another person and we both are updating it
often throughout the day. I'd like to have a cell display the last time

and
date it was modified. Can this be done? Thanks, Diane




  #4   Report Post  
LDL
 
Posts: n/a
Default

Peo and Bob, Thank you both for your responses. Diane

"Bob Phillips" wrote in message
...
Here is an UDF

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

Now you can use the following formula in one of your cells:
=DocProps("Last save time")

Obviously, the file has to have been saved.

--

HTH

Bob Phillips

"LDL" wrote in message
...
I am sharing a worksheet with another person and we both are updating it
often throughout the day. I'd like to have a cell display the last time

and
date it was modified. Can this be done? Thanks, Diane






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Automatically enter date and time but only update once. PM New Users to Excel 3 January 21st 05 07:47 AM
Help - Information with time and date PM Excel Discussion (Misc queries) 4 January 6th 05 08:25 AM
Combined date time cell to separate date & time components Mark Ada Excel Discussion (Misc queries) 1 December 2nd 04 02:48 AM
Combined date time cell to separate date & time components Mark Ada Excel Discussion (Misc queries) 1 December 2nd 04 12:07 AM
Combined date time cell to separate date & time components Mark Ada Excel Discussion (Misc queries) 1 December 2nd 04 12:07 AM


All times are GMT +1. The time now is 03:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"