Time Stamp-With Change

A

AntonyY

I seen many posts on in this forum on time stamps. My problem this tha
in a1:a10 are going to be the entries. I need upon each entry into eac
cell a time stamp in b1:b10, but I need this to be hard coded so that i
I went back in a1and made a change it wouldn't change the time again i
b1.

Regards

Anton
 
G

Gord Dibben

Antony

Try this in a worksheet module.

Right-click on your sheet tab and "View Code".

Paste in there.

Private Sub Worksheet_Change(ByVal Target As Range)
'Col B time will not change if data in Col A is edited
On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A1:A10")) Is Nothing Then
With Target
If .Value <> "" And .Offset(0, 1).Value = "" Then
.Offset(0, 1).Value = Format(Now, "hh:mm:ss")
End If
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub

Gord Dibben Excel MVP
 
Top