one method is to use the offset function...
e.g.
activecell.offset(0,1).select
moves the cursor one column to the right
activecell.offset(0,-1).select
moves the cursor one column to the left
however, generally you don't need to "select" a cell to work with it
e.g.
activecell.offset(0,5).value = "cat"
places the word "cat" in the 5th column to the right of the current cell.
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.