Hi all,
What I have below stamps the date+time for new entry or change of value.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Application.EnableEvents = False
Cells(Target.Row, 8).Value = Date + Time
Application.EnableEvents = True
End If
End Sub
What do I need to change to make it stamp new entries only but not changes ?
Many thanks,
"The more I learn, the more I realize how little I know"
What I have below stamps the date+time for new entry or change of value.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Application.EnableEvents = False
Cells(Target.Row, 8).Value = Date + Time
Application.EnableEvents = True
End If
End Sub
What do I need to change to make it stamp new entries only but not changes ?
Many thanks,
"The more I learn, the more I realize how little I know"