View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Alberto Ast[_2_] Alberto Ast[_2_] is offline
external usenet poster
 
Posts: 181
Default Moving one cell with macros

Thanks this works great.... I was not expecting an answer until tomorrow...
it is midnight over here.

Regards

"L. Howard Kittle" wrote:

Try this.

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

HTH
Regards,
Howard

"Alberto Ast" wrote in message
...
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.