A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You were close. . . .
This sheet event code will place time in A when anything entered in B
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("B1:B100")) Is Nothing Then
Application.EnableEvents = False
Target.Offset(, -1) = Format(Now, "hh:mm:ss")
End If
Application.EnableEvents = True
End Sub
Gord