excel vba cell on change

The solution for “excel vba cell on change” can be found here. The following code will assist you in solving the problem.

‘ In your Worksheet code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Target.Worksheet.Range(“A1”)) Is Nothing Then
Application.EnableEvents = False
‘ Do your stuff
Application.EnableEvents = True
End If
End Sub

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts