PC Review


Reply
Thread Tools Rate Thread

data validation list does not trigger worksheet_change event

 
 
=?Utf-8?B?aXZvcnlfa2l0dGVu?=
Guest
Posts: n/a
 
      17th Oct 2006
if a user selects a value from a data validation list the VBA code is not
executing, how do i fix this?
 
Reply With Quote
 
 
 
 
Gary Keramidas
Guest
Posts: n/a
 
      17th Oct 2006
i have something similar. mine is in c2, this may work

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count = 1 Then
If Not Intersect(Target, Range("C2")) Is Nothing Then
Call Threshold

Else
'Exit Sub

End If
End If
End Sub

--


Gary


"ivory_kitten" <(E-Mail Removed)> wrote in message
news:50F186EC-79FD-4A25-B4B1-(E-Mail Removed)...
> if a user selects a value from a data validation list the VBA code is not
> executing, how do i fix this?



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
bug: Worksheet_Change clashes with dropdown list validation. Alfista71@SbcGlobal.net Microsoft Excel Programming 4 15th Jul 2009 12:58 AM
Create validation list with Worksheet_change LuisE Microsoft Excel Programming 1 28th Mar 2009 03:14 AM
Run VBA code only worksheet change, but don't trigger worksheet_change event based on what the code does ker_01 Microsoft Excel Programming 6 3rd Oct 2008 09:45 PM
Problem with Data Validation Dropdown List / Worksheet_Change Event wla6h@yahoo.com Microsoft Excel Programming 1 9th Aug 2006 10:21 PM
MS Bug? Data validation list dropdown with Worksheet_Change event Dan Frederick Microsoft Excel Programming 7 6th Apr 2004 05:35 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:35 AM.