View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Entering data while procedure is on

The is no pause and wait for the user to make an entry command.

You would need to select the cell, set the enter key to trigger a macro
(using OnKey) or OnEntry.

Almost any approach would be kludgy.

If you are trying to enforce a certain pattern of cell selection, you can
try unlocking just the cells you want to nagivate to, then protecting the
sheet and set the enableSelection property to xlunlockedcells

Almost any solution would be dependent on exactly what you want to do.

Regards,
Tom Ogilvy

"Pierre Leclerc" wrote in message
...
HI

Here is my problem

My procedure goes:
ActiveCell.Offset(3, 8).Select
and then I would like to be able to enter manually a value in the
activecell. Once the value is in, I would want the procedure to go on
ActiveCell.Offset(6, 3).Select
and so on and so on

The problem is being able to enter a value in the activecell between
each vba step.

How do I go about?

Thanks
Pierre Leclerc
http://www.excel-vba.com