View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Pete McCosh[_3_] Pete McCosh[_3_] is offline
external usenet poster
 
Posts: 1
Default Excel macro activation.

Kate,

you could try using the worksheet change event to trigger
the macro. Something like this should work:

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Address = "$A$1" and Target.value = "B" Then
Application.EnableEvents = False
Call KatesMacro()
Application.EnableEvents = True
End If

End Sub

Pete