Hi,
I have this macro that intersects any time a value is changed within a specific range. Everything works fine except it doesn't run when I hit the Del key on any of the cells of that range.
How do we make it work so it will Intersect on Del key too ?
Part of my code:
Dim keycells As Range
Set keycells = Worksheets("$can").Range("013:0312")
If Not Intersect(keycells, Range(Target.Address)) Is Nothing Then
Thank you for your help
Pierre
I have this macro that intersects any time a value is changed within a specific range. Everything works fine except it doesn't run when I hit the Del key on any of the cells of that range.
How do we make it work so it will Intersect on Del key too ?
Part of my code:
Dim keycells As Range
Set keycells = Worksheets("$can").Range("013:0312")
If Not Intersect(keycells, Range(Target.Address)) Is Nothing Then
Thank you for your help
Pierre