View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
jack jack is offline
external usenet poster
 
Posts: 97
Default How to programmatically make a cell the Active Cell?

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?

"Don Guillett" wrote in message
...
the active cell IS the activecell

x=activecell.row
y=activecell.column
z=activecell.address
activecell.offset(1,6)
etc, etc.
--
Don Guillett
SalesAid Software

"Jack" <replyto@newsgroup wrote in message
...
Is that possible?