Question
Dim oCell As Excel.Range
Dim oSheet As Excel.Worksheet
Set oSheet = ActiveSheet
With Worksheets("MySheet")
For Each oCell in
oSheet.Range("F1:F30").SpecialCells(xlCellTypeCons tants)
Debug.Print Target.row
Next
End With
Stepping through this repeatedly prints 8. (Sometimes 11)
What makes it an 8, and why does it not move to the next row?
Thanks - Kirk
|