How can a macro accept keyboard inputwhile running?

  • Thread starter Thread starter Guest
  • Start date Start date
You can use the InputBox command

z = InputBox("Test", "Test")

Z will return whatever value is typed into the prompt that will be displayed
upon running.
 
Is there no other way to to do this other than the input box - just seems too
"kludgy" to me. I am working on a macro which moves through input cells and
would like to do the same thing without all the pop up input boxes?
 
Back
Top