View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Manoj Kumar Sharma Manoj Kumar Sharma is offline
external usenet poster
 
Posts: 3
Default Worksheet_Change method not working in Excel 97

Hi Bob,
The problem mentioned is a bug in Excel97. I tried
your solution.It's working fine in Excel 97.
Thanks.
-----Original Message-----
As Rob says, with XL97, a change to a Data Validation

cell does not fire
the Worksheet Change event.

You can try and get round this by linking a cell to that

DV cell (=H10 say),
and using the Worksheet Calculate event to fire your code.

--

HTH

RP

"Manoj Kumar Sharma" wrote in

message
...
In an excel sheet the cell types of a column are "named
list" type.The named list refers to a range of cells.
In each cell values are to be selected from the list only.
On selecting an item from the list ,specific actions are to
be done depending on the value of item being chosen.For
this macro has been written in the Worksheet_Change event.
This macro is working fine in Excel 2000. But in Excel 97
this macro is not working .Infact, worksheet_change() event
is not getting fired in Excel 97 for the action of
selecting items from a named list.Is it a problem with
Excel 97 ?



.