Rather than using ActiveCell.Next.Activate use the following:
ActiveCell.Offset(1, 0).Activate
'Offset' uses two parameters the first is rows, and the second is columns. So the above statement says move down one row, stay in the same column. Positive numbers move you down in rows and to the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.