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

  • Thread starter Thread starter P Schneider
  • Start date Start date
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!
 
Hi,

Your question is far from clear but maybe this

ActiveCell.Offset(, 1).Select

Mike
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top