View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Auto Change sheet value

This problem was fixed in xl2k (xl97 still suffers from the problem).

How about putting a button near the cell with data|validation that will invoke
the macro.

Or dump the data|validation completely and use either a dropdown from the Forms
toolbar or a combobox from the Control toolbox toolbar.

Brian Matlack wrote:

Hi again!
Apparently selecting a date from a data validation list does not
trigger a Private Sub Worksheet_Change(ByVal Target As Excel.Range).

How can I accomplish this? I would like for the code to run when the
user selects the new date from the data validation list.

I could just put a button for the user to click after changing the date
but I wanted to ask anyway.

Thanks!!

--
Brian Matlack
------------------------------------------------------------------------
Brian Matlack's Profile: http://www.excelforum.com/member.php...fo&userid=3508
View this thread: http://www.excelforum.com/showthread...hreadid=567100


--

Dave Peterson