Hi everyone!
A have a worksheet with the following data:

AZ5=4 , BA5=3, BB5=2, BC5=1

in column AP , I have a function in specific cells who copies the values from above cells:

AP42=3, AP47=3, AP52=2, AP57=1, AP60=1 and so on.. (about 100 cells copies data from cells above)
What I want: when I change values in AZ5,BA5,BB5,BC5 the cells from column AP (AP42,AP47,AP52,AP57,AP60... with the function "copiereNrTura" in it) to copy values, and changed cell (AP42,AP47,AP52,AP57,AP60..) to trigger another procedure who will write something in another cells (A42:AI42,A47:AI47,A52:AI52,A57:AI57,A60:AI60..). How I will do that??
Many thanks for your replies!

What I have:
(this is the function who copies values form AZ5,BA5,BB5,BC5):
[vba]
Function copiereNrTura(adresaTura As Range)
copiereNrTura = adresaTura.Value
End Function
[/vba]
How I will trigger the canged cell to run the procedure to write in (A17:AI17, A42:AI42,...)?