如何使用整数循环遍历两个范围,如下所示:
Dim column1 As Range
Set column1=.Range("A1:A1000")
Dim column2 As Range
Set column2=.Range("B1:B1000")
Dim i As Integer
For i=1 To column1.Height
If column1.Cells(i,1).Value = someValue And column2.Cells(i,1).Value = someValue then
...
End If
Next
这种方法有用吗?如何访问存储范围的单元格?大多数问题和答案都是通过For Each
周期来处理循环,这是我想避免的。