Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column = 1 Then
Application.EnableEvents = False
Target.Value = Target.Value & " " & Format(Date, "dd.mm.yyyy")
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column = 1 Then
Application.EnableEvents = False
If Target.Value = "ok" Or Target.Value = "dead" Then Target.Value = Target.Value & " " & Format(Date, "dd.mm.yyyy")
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column = 7 Then
Application.EnableEvents = False
If LCase(Target.Value) = "ok" Or LCase(Target.Value) = "dead" Then Target.Value = Target.Value & " " & Format(Date, "dd.mm.yyyy")
Application.EnableEvents = True
End If
End Sub