kalpeshpatel
New Member
hi,
it is possibel that when in sheet1 a1 cell is active to run macro
it is possibel that when in sheet1 a1 cell is active to run macro
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$A$5" Then
MsgBox "You just clicked cell A5.... Now i will run"
End If
End Sub