The following code works for 1 worksheet. If I had multiple worksheets that are all updating independently from a 3rd party app. What's the correct syntax to fire multiple events and ensure the range updates on the required worksheet?
Does this event placed in each sheet object only select the range("a1") in which the event has fired?
Thanks,
Os
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Range("a1").Value = -5
End Sub
Does this event placed in each sheet object only select the range("a1") in which the event has fired?
Thanks,
Os