Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row > 2 Then
Application.EnableEvents = False
Cells(2, Target.Column).Value = Date
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row > 2 And Target.Column > 10 Then
Application.EnableEvents = False
If Cells(1, Target.Column).Value = "" Then
Cells(1, Target.Column).Value = Date
Else
Cells(2, Target.Column) = Date
End If
Application.EnableEvents = True
End If
End Sub