Active Cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

Excel 2000

What is the macro command to move the active cell up and down a row without
giving specific cell references in the same manner you can move columns right
and left with "ActiveCell.Next.Select" and "ActiveCell.Previous.Select"
respectively.
 
Using the Offset property:

ActiveCell.Offset(1).Select

to move one row down

ActiveCell.Offset(-1).Select

to move one row up
 
Hi
activecell.offset(1,0).select
and
activecell.offset(-1,0).select
 

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

Back
Top