how do i write a macro to move down in the sheet one line ?

G

Guest

I have to enter into a sheet several lines of information but I can't find
what the equivalent to the Lotus 123 commands for this in Excel Visual
Basic....they would be the down,up, right, and left commands. I thought
selection.down would be it but there isn't such a thing. Where do I find a
list of commands for vb that would be equivalent to Lotus.
 
B

Bob Phillips

Selection.Offset(1,0).Select

down 1 row

Selection.Offset(0,1).Select

across 1 column

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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

Top