How to programmatically make a cell the Active Cell?

  • Thread starter Thread starter Jack
  • Start date Start date
the active cell IS the activecell

x=activecell.row
y=activecell.column
z=activecell.address
activecell.offset(1,6)
etc, etc.
 
Maybe it was not clearly said.
I need to make another cell to become ActiveCell without clicking on it but
to be done programmatically.
How to do that?
 
Use the .Activate method:

Range("A1").Activate

altough, in 99% of the cases, it's not necessary to Select/Activate the
objects to work with them.
 

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