Re : Inscription Nom par macro
Bonjour Forum et Dranreb,
Merci pour ton aide, mais en macro, je ne maîtrise pas tout.
Cette formule m'a été donnée, que j'ai plus ou moins réussi à comprendre :
Private Sub CommandButton1_Click()
If TextBox1 = "" Or ComboBox1.ListIndex = -1 Then Exit Sub
Range("D65000").End(xlUp).Offset(1, 0) = TextBox1
Range("D65000").End(xlUp).Offset(0, 1) = ComboBox1
For i = ComboBox1.ListIndex + 1 To 12
On Error Resume Next
m = VBA.MonthName(i)
Sheets(m).Range("A65000").End(xlUp).Offset(1, 0) = TextBox1
On Error GoTo 0
Next
End Sub
Par contre , comme j'en suis au balbutiement, ma question est à quel niveau je dois inscrire ta boucle.
Un grand merci pour tes explications;
Cdt