View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Data input macro

VBA macros don't pause for input unless you want to use an input box.

You would have to kludge something together selects a cell and ends. Then
use an event to fire the next movement and end - and so forth. Guess it
depends on how much control you want to have.

You might try unlocking the specific cells, then setting EnableSelection so
only unlocked cells can be selected, then protecting the sheet.

--
Regards,
Tom Ogilvy

"Jay Oken" wrote in message
...
Can someone please post the code to create a macro that does the

following.

Pause for input on the current cell
Move one cell to the right
Pause for input
Move one cell down and one cell to the left
Re-invoke the macro

Thanks,
J