voila ma fonction :
Private Sub OptionButton1_Click()
Dim cpt As Byte
cpt = 3
With Worksheets("enr_incidents" )
Range("P3" ).Select
Do
Range("T" & cpt).Value = Range("P" & cpt).Value + Range("Q" & cpt).Value
cpt = cpt + 1
Range("P" & cpt).Select
Loop Until IsEmpty(ActiveCell)
cpt = 3
Range("T3" ).Select
Do
Range("data_graph!A" & cpt).Value = Range("enr_incidents!T" & cpt).Value * 1000000 / TextBox1.Value
cpt = cpt + 1
Range("enr_incidents!T" & cpt).Select < --
Loop Until IsEmpty(ActiveCell)
End With
End Sub
je ne sais pas pourquoi, mais des fois elle veut bien marcher et des fois non, le debugueur me dit que la ligne avec la fleche a echoué, savez vous pourquoi ?
merci