View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Amod Amod is offline
external usenet poster
 
Posts: 7
Default one problem in excel

Hi
Serkan
Thanks for reply.
As you suggest I have used Worksheet_SelectionChange event
procedure, but this procedure gets called when u type in a
particular cell suppose A1, then you left that cell and
type in other or just traversed through other cells, after
that when you again go to A1 cell then this event get fire.
so this event is not useful for me.
I want an event procedure which get fired while I am
typing in the A1 Cell.

regards
Amod


-----Original Message-----
Private Sub Worksheet_SelectionChange(ByVal Target As
Range)
If Target.Address = "$A$1" Then
..
..
..



-----Original Message-----
hi
all
As you all know there is an onchange event to a text

box
in VB. I want same functionality for excel worksheet

cell
or range.
If you have any idea please let me know.
thanks in advance.

regards
amod
.

.