Move cursor down one cell

G

Guest

I have recorded a macro to try and position my cursor in the next blank cell
at the bottom of a list.
I have the following to send the cursor to the bottom of the list :
Selection.End(xlDown).Select
but the next line is : Range("B4").Select which obviously continuously
selects B4. What is the command to just drop down one cell?
 
G

Guest

There are several ways to do it:
Selection.End(xlDown).Offset(1, 0).Select
Or
Selection.End(xlDown).Select
Selection.Offset(1, 0).Activate

Either of these two will put the cursor in the cell below the last data cell
in that column.
 

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