Nilton - Open up your sheet's module (right click the sheet tab, and select "view code"). Insert code something like this:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$A$1" Then woj
End Sub
In this case, "woj" is the name of the macro you want to run, presumably in the same workbook.
Tom
Thank you, but I would like also to run the macro from the "IF", like if(A1=2, RUN MACRO, ""), can i do it!
Thanks so far,
Nilton
Sorry, Nilton. I misread your request.
Try
Private Sub Worksheet_Change(ByVal Target As Range)
If (Target.Value = 1) And (Target.Address = "$A$1") Then woj
End Sub
Tom