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
 
Back
Top