Hi Sören,

Yes, with an event macro stored inthe module of the respective worksheet:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$10" Then '<<<< change cell to suit your needs
yourcode
End Sub

HTH
Cheers
Carim