Hi I'm new to VBA so apologies if this is a really simple fix.
The following code keeps returning Excel Error '91': object variable or with block variable not set.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("$B$7")) = Worksheets("Team Amendment Tables").Range("$C$7") Then
Application.Run "TargetUpdate1"
End If
End Sub
Any thoughts on how to resolve this? Context: Drop Down List in Sheet 7 to trigger Macro: TargetUpdate1 Once without loop.