create a macro to move one cell to the right w/o specifying range

P

P Schneider

I am trying to create a macro that moves the cell pointer one cell to the
right without specifying a range. Please help!
 
M

Mike H

Hi,

Your question is far from clear but maybe this

ActiveCell.Offset(, 1).Select

Mike
 
U

UglyChicken

I am trying to create a macro that moves the cell pointer one cell to the
right without specifying a range.  Please help!

activecell.offset(0,1).select
 
Top