Use of Immediate Window

  • Thread starter Thread starter JMay
  • Start date Start date
J

JMay

How can I (from within my immediate window) change the activecell from say
B7
to C10?
 
Range("C10").Select

If you are debugging code, you can even stop the execution with break, and
set variables in the immediate window. Just don't use the print qualifier
when you do.
--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Thanks to both you.

Bob Phillips said:
Range("C10").Select

If you are debugging code, you can even stop the execution with break, and
set variables in the immediate window. Just don't use the print qualifier
when you do.
--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address 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