View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Snake Plissken[_2_] Snake Plissken[_2_] is offline
external usenet poster
 
Posts: 75
Default Is this possible? Click a cell to run a macro

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Target.Address() = "$A$1" Then

Call "myMacro"

End If


End Sub