Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / General Excel Questions / May 2008

Tip: Looking for answers? Try searching our database.

Updated times stamp of last change

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
rciolkosz - 30 May 2008 20:15 GMT
I have a shared excel file.  How do I display a time stamp of what time the
latest change was made?
Gord Dibben - 31 May 2008 00:47 GMT
Several ways to do this.

Event code can be tailored to suit your needs.

Where would you like to see the timestamp?

On one sheet or on all sheets?

This sheet event code would give you a timestamp in B1 whenever A1 was changed.

I'm sure you have something more complex in mind, but example only..

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
Target.Offset(0, 1).Value = Now()
End If
End Sub

Gord Dibben  MS Excel MVP

>I have a shared excel file.  How do I display a time stamp of what time the
>latest change was made?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.