hey xld, is it posible without doing it in the user form buttom ??
becouse now it's everything in a mess...

what i have done is this for ex.
If Caller = ButtonPon1 Then
Workbooks("blabla").Sheets("MON").Activate
Worksheets("MON").Unprotect Password:="pass"
Range("i7").Value = Range("i7").Value +1
Worksheets("MON").protect Password:="pass"
If Caller = ButtonPon2 Then
Workbooks("blabla").Sheets("MON").Activate
Worksheets("MON").Unprotect Password:="pass"
Range("i8").Value = Range("i8").Value +1
Worksheets("MON").protect Password:="pass"
and so on ...
but when i click OK in the user form ... it changes all values +1 not only for specific button :s ...
oh man oh man ...
can i do it some other way?