Moving one cell with macros

  • Thread starter Thread starter Alberto Ast
  • Start date Start date
A

Alberto Ast

Using macros I want to move down one cell from where ever position I am..
have tried recording a macro but it always give the the specific cell I
moved... I need it to move one cell down.
 
Try this.

Sub MoveIt()
ActiveCell.Offset(1, 0).Select
End Sub

HTH
Regards,
Howard
 
This is excellent.. I knew it had to be something simple but if you do not
know it always will be complicated... here is near midnight so I though I was
going to get an answer until tomorrow... this is great thanks.
 
Thanks this works great.... I was not expecting an answer until tomorrow...
it is midnight over here.

Regards
 

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