cell address

  • Thread starter Thread starter Kate
  • Start date Start date
K

Kate

Hi,
I have a macro that does some stuff and selects a cell using
cell.address
But the cell I want is then actually 1 row down and 1 column to the
left.

Because cell address is a string, I can't go Range("A" & myCell + 1),
so what should I do?

Thanks
Kate
 
Range("A" & myCell).Offset(1,1)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Never could tell left from right <g>

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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