killlarboy
New Member
- Joined
- Oct 10, 2016
- Messages
- 9
Hello All,
Kindly solve my code maybe i did something wrong i want to run a macro automatically on base of cell A2
Kindly solve my code maybe i did something wrong i want to run a macro automatically on base of cell A2
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("$A2:$A2")) And Value = "1" Then
Application.Run "Macro1"
End If
End Sub