Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 40
Default data validation list does not trigger worksheet_change event

if a user selects a value from a data validation list the VBA code is not
executing, how do i fix this?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default data validation list does not trigger worksheet_change event

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" wrote in message
...
if a user selects a value from a data validation list the VBA code is not
executing, how do i fix this?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with Data Validation Dropdown List / Worksheet_Change Event [email protected] Excel Programming 1 August 9th 06 10:21 PM
In what version was the change event on a data validation list fixed? Don Wiss Excel Programming 1 May 5th 06 12:55 PM
trigger event if any data in modified on ONLY the current workshee CRayF Excel Programming 5 September 23rd 05 09:39 AM
Event Procedure - Data Validation List JEFF Excel Programming 19 July 25th 05 03:35 PM
MS Bug? Data validation list dropdown with Worksheet_Change event Dan Frederick Excel Programming 0 April 6th 04 05:35 AM


All times are GMT +1. The time now is 07:57 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"