Thread: Selecting Cells
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
sebastienm sebastienm is offline
external usenet poster
 
Posts: 694
Default Selecting Cells

Hi
Try:
ActiveCell.Offset(1, 0).Select
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Gabe" wrote:

Hey,

I'm trying to select the next cell down, just like you would if you used the
up and down keys on your keyboard. What code could I use?

I tried this already but it doesn't work:

Range("B3").Activate
ActiveCell.Next(x1Down).Select

Any suggestions?