Hello, I'm still learning, this is not an important application at all, just trying things out to see how they work.
Of these two methods the top one works and the bottom one does not. I have tried multiple times but can never get the second method to work. What could I be doing wrong here? Any insight would be greatly appreciated.
Private Sub Worksheet_Change(ByVal target As Range)
If Not Intersect(target, Range("a2")) Is Nothing Then
Call RangeChange
End If
End Sub
Private Sub workshhet_Change(ByVal target As Range)
If target.Address = "$a$4" Then
Call RangeChange2
End If
End Sub
Bookmarks