Thread: Change Event
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Curt Curt is offline
external usenet poster
 
Posts: 469
Default Change Event

is it possible to have multiple ifs to trigger event I am having no luck
Thanks

"merjet" wrote:

Add to worksheet module:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$1" Then
'add code here or call macro
'change $B$1 to suit
End if
End Sub

Hth,
Merjet