how do I set up a macro that will move the cursor down one cell?

G

Gord Dibben

Sub downer()
ActiveCell.Offset(1, 0).Select
End Sub

Sub downer2()
ActiveCell.Offset(1, 0).Interior.ColorIndex = 3
End Sub


Gord Dibben MS Excel MVP


On Thu, 16 Nov 2006 15:52:01 -0800, gk <[email protected]> wrote:
 

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