activating cells

  • Thread starter Thread starter Ryan H.
  • Start date Start date
R

Ryan H.

Hi,

I have an active selected cell in a worksheet. I want to be able to select
the cell that's three rows down. How can I address that cell so I can modify
it?

Thanks
 
Hi Ryan,

One way:

Dim rng as Range
Set rng = Activecell.offset(3)
 

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