Option
Explicit
Private
Sub
Worksheet_Change(
ByVal
Target
As
Excel.Range)
Const
cWACHE
As
String
=
"A1:S500"
Const
cSpalte
As
Long
= 20
If
Not
Intersect(Range(cWACHE), Target)
Is
Nothing
Then
Application.ScreenUpdating =
False
Application.EnableEvents =
False
Cells(Target.Row, cSpalte).Value = Cells(Target.Row, cSpalte).Value + 1
Application.ScreenUpdating =
True
Application.EnableEvents =
True
End
If
End
Sub