next cell

  • Thread starter Thread starter robert_woodie
  • Start date Start date
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
 
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)
 
Back
Top