Cell Change Event

G

Guest

Hello,

Is there a way to have an event fire as soon as a user starts typing data
into a cell range? IE: I can use the worksheet_Change event but it only
fires after the user presses the enter key. A form level control change
event fires once we start changing the data... This is what I want on a
worksheet... Any Ideas?

Thanks,
Ernst.
 
G

Guest

I don't have an exact answer... but if it were me I'd look for function/code
that is something like on_focus that way as soon as the cell has cursor focus
the event will fire...just a thought
 
T

Tom Ogilvy

for all practical purposes, macros don't run while a user is editing a cell.
So there are no built in events that fire on each key entry while editing a
cell.
 
G

Guest

I think I know what your trying to do. The closest way That I found is
creating a form and aligning one ch size textbox in a line to appear as one
textbox and formating each box to one chr. keep tab order proper and code a
search from first chr then from two chr and so on untill match or a new entry
is required in list.
Good luck.
 

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

Top