LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Worksheet_Change doesn't work

Because he is not using the address string, but the Range("B15")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Dkline" wrote in message
...
Thanks for your help. It's interesting that your solution worked without
an
absolute reference.

"Mark Ivey" wrote:

See if this will work for you...


Private Sub Worksheet_Change(ByVal Target As Range)
Dim myList As String
If Intersect(Target, Range("B15")) Is Nothing Then
Else
myList = Target.Value
MsgBox "B15 Changed"
End If
End Sub


--
Mark Ivey


"Dkline" wrote:

In a worksheet named "GUI" I have a drop-down in cell "B15". What I
need to
do is as the end user makes a selection change in this drop-down, it
runs a
macro to recalculate.

I am using the code below in the "GUI" worksheet:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "B15" Then
Call SideFundSolve
End If
End Sub

The behavior I'm getting as I watch it in the debugger is it just skips
over
the Call. What am I doing wrong?



 
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
Private Sub Worksheet_Change doesn't work? Sam Kuo[_3_] Excel Programming 2 March 9th 08 08:57 PM
Worksheet_Change event doesn't work in Excel 97 kysiow Excel Programming 1 June 10th 04 11:32 AM
Worksheet_Change event doesn't work in Excel 97 kysiow Excel Programming 0 June 10th 04 09:41 AM
Worksheet_Change does not work ned Excel Programming 3 May 31st 04 09:51 PM


All times are GMT +1. The time now is 06:03 PM.

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

About Us

"It's about Microsoft Excel"