Help with Time Stamp

L

Little Penny

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
 
P

Paul B

No need to start another post, see your other one

--
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top