#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 64
Default Time Stamp

How can I modify this code so that every time a Worksheet_Change event
occurs it will but the current date and time in cell (L1) over writing
the last update?

In addition win the files is open it show show the time of the last
update.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 11 Then
If IsEmpty(Target) Then
Target.Offset(0, 1).Value = Empty
Else
Target.Offset(0, 1).Value = Now()
End If

End If

End Sub
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 709
Default Time Stamp

Little Penny, whenever a change occurs anywhere in the sheet, is that what
you want?

Private Sub Worksheet_Change(ByVal Target As Range)
Range("L1") = Now
End Sub


--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"Little Penny" wrote in message
...
How can I modify this code so that every time a Worksheet_Change event
occurs it will but the current date and time in cell (L1) over writing
the last update?

In addition win the files is open it show show the time of the last
update.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 11 Then
If IsEmpty(Target) Then
Target.Offset(0, 1).Value = Empty
Else
Target.Offset(0, 1).Value = Now()
End If

End If

End Sub



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
Time Stamp DAI Excel Worksheet Functions 8 November 27th 06 07:23 PM
Time Stamp Little Penny Excel Programming 0 November 22nd 06 12:04 AM
Time Stamp John Pierce Excel Programming 4 September 15th 06 06:43 PM
time stamp a cell that doesn,t change when time stamping another RC Excel Programming 5 October 13th 05 02:52 AM
Time Stamp Richard Excel Discussion (Misc queries) 4 February 2nd 05 11:16 PM


All times are GMT +1. The time now is 04:37 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"