Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

date row last modified

2 views
Skip to first unread message

John McCarthy

unread,
Mar 16, 2003, 1:22:58 AM3/16/03
to
Is there a way I can create a value in a particular cell
of a column that will display the date and time that
particular row was last modified?

Paul B

unread,
Mar 16, 2003, 8:56:25 AM3/16/03
to
John, see if this will work for you

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'Puts the date & time in column K when the data changes,
'in the rows in columns A-J
'put in worksheet code
If Target.Count > 1 Then Exit Sub
Select Case Target.Column

'columns to check for data change
Case 1 To 10

'where the time is put
Cells(Target.Row, 11) = Now()

End Select
End Sub


--
Paul B
Always backup your data before trying something new
Using Excel '97
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **


"John McCarthy" <JLMcC...@LBL.gov> wrote in message
news:047901c2eb84$7d383040$3001...@phx.gbl...

0 new messages