need help with macro -move cursor down then home

F

Ftca

Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA
 
T

Tom Ogilvy

More reliable might be:

Cells(ActiveCell.Row+1,2).Select

Doesn't depend on values being in other cells.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top