Hi
I need two worksheet change events in a worksheet
This is what I have so far (code tested and works fine) ...
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Answer As String
Set isect = Application.Intersect(Target, Range("designStatus"))
If Not isect Is Nothing Then
[code here]
End Sub
However, I need another worksheet change event added for when an unrelated cell changes - this would run different code.
Can this be done?
Thanks
I need two worksheet change events in a worksheet
This is what I have so far (code tested and works fine) ...
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Answer As String
Set isect = Application.Intersect(Target, Range("designStatus"))
If Not isect Is Nothing Then
[code here]
End Sub
However, I need another worksheet change event added for when an unrelated cell changes - this would run different code.
Can this be done?
Thanks