Is that possible?
D Don Guillett May 13, 2004 #2 the active cell IS the activecell x=activecell.row y=activecell.column z=activecell.address activecell.offset(1,6) etc, etc.
the active cell IS the activecell x=activecell.row y=activecell.column z=activecell.address activecell.offset(1,6) etc, etc.
J Jack May 13, 2004 #3 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?
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?
J Juan Pablo González May 13, 2004 #4 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.
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.