View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default How do you move the selection one cell to the right in a macro

See the Offset command. E.g.,

ActiveCell.Offset(0, 1).Select



"fder" wrote in message
...
How do you move the selected cell in any direction from any
arbitrary
position? I'm just using the VB editor.