Thread
:
Is this possible? Click a cell to run a macro
View Single Post
#
2
Posted to microsoft.public.excel.programming
Snake Plissken[_2_]
external usenet poster
Posts: 75
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
Reply With Quote
Snake Plissken[_2_]
View Public Profile
Find all posts by Snake Plissken[_2_]