View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default activating cells

Hi Ryan,

One way:

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

---
Regards,
Norman


"Ryan H." wrote in message
. rogers.com...
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