View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Dkline Dkline is offline
external usenet poster
 
Posts: 75
Default Worksheet_Change doesn't work

Making it an absolute reference solved the problem. Thanks.

"Mike H" wrote:

Try

If Target.Address = "$B$15" Then

Mike

"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?