F
filip
I am counting number of cells i have to iterate with next piece of code:
Dim rows
Do While Not (IsEmpty(ActiveCell))
rows = ActiveCell.Row
ActiveCell.Offset(1, 0).Select
Loop
is it possible to do the same without selecting?
Dim rows
Do While Not (IsEmpty(ActiveCell))
rows = ActiveCell.Row
ActiveCell.Offset(1, 0).Select
Loop
is it possible to do the same without selecting?