I'm trying to have code run when data is pasted into a worksheet. I have this code on the Sheet page, but it doesn't work if the data is pasted. I have to go specifically to only A1, and copy/paste. Thanks.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then Call Marco1
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then Call Marco1
End Sub