我想确定对工作表的更改是否包含特定行中的单元格。我试过了
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 是一个命名的整数常量。
我不断收到运行时错误 1004。我该怎么做?