Forum Discussion

Christopher Easton's avatar
Christopher Easton
Copper Contributor
Apr 03, 2018

Do loops - without moving cursor

Hi,   S I am in a VBA class, and the teacher wants to count rows and columns with a do loop without moving the cursor. usually I would use:   Do While ActiveCell.Value <> "" n = n + 1 A...