Hi,
I have this VBA that triggers a set of instructions if a cell in a specific range change.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("n13:n312")) Is Nothing Then
...
...
...
It works fine if I change a value or enter a new value but it doesn't trigger if I just delete the content using the Del key.
Does someone has an idea how to do this ?
Thank you
Placasse
I have this VBA that triggers a set of instructions if a cell in a specific range change.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("n13:n312")) Is Nothing Then
...
...
...
It works fine if I change a value or enter a new value but it doesn't trigger if I just delete the content using the Del key.
Does someone has an idea how to do this ?
Thank you
Placasse