next cell

R

robert_woodie

if i have cell a1 selected in visual basic code what is the line of code
to select the cell below it......ie add one to the row number?

im sure this is simple!!
cheers
robert
 
B

Bob Phillips

Robert,

It's as simple as

Activecell.Offset(1,0).Select

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top