I want to determine if a change to a sheet includes cells in one particular row. I tried
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Dim i As Integer
If ActiveSheet.Name = "Yahoo" Then
If Not Intersect(Target, Range(Cells([YahooID_Row], 1), Cells([YahooID_Row], 999))) Is Nothing Then
Else
End If
End If
End Sub
YahooID_Row is a named integer constant.
I keep getting run time error 1004. How do I do this?