Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Or Target.Address(False, False) <> "I4" Then Exit Sub
' Call your macros here
' e.g. Call Macro1
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Address <> "I4" Then Exit Sub
Application.EnableEvents=False
' Call your macros here
' e.g. Call Macro1
Application.EnableEvents=True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Intersect(Target, [I4]) Is Nothing Then
'Call your macros here
' e.g. Call Macro1
End If
Application.EnableEvents = True
End Sub