View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Ftca Ftca is offline
external usenet poster
 
Posts: 10
Default need help with macro -move cursor down then home

Good as Gold
Thanks that worked!!



"GB" wrote in message
...
Try

activecell.End(xlToLeft).Offset(1,1).Select

GB



"Ftca" wrote in message
...
Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA