View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
L. Howard Kittle L. Howard Kittle is offline
external usenet poster
 
Posts: 698
Default Moving one cell with macros

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.