G
Guest
I have the following code to cycle through a worksheet and find all non-blank
cells
For Each c In ActiveSheet.UsedRange
If c.Value <> "" Then
CheckValue
End If
Next
This works, but takes a few minutes - even though there are only roughly 200
non-blank cells.
Any suggestions on how to speed this up? (I also tried "for each c in cells")
Thanks!
Andrew
cells
For Each c In ActiveSheet.UsedRange
If c.Value <> "" Then
CheckValue
End If
Next
This works, but takes a few minutes - even though there are only roughly 200
non-blank cells.
Any suggestions on how to speed this up? (I also tried "for each c in cells")
Thanks!
Andrew