I want to capture when value changes in the cell A2
I tried the below code but it is not working
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Me.Range("H5")) Is Nothing Then Macro
End Sub
I have a breakpoint inside the macro but its not coming till there I also tried the below, but no luck
Private Sub Worksheet_Change(ByVal Target As Range)
MsgBox (Target.Column)
End Sub