Bonsoir
a tester ce code
Private Sub CommandButton1_Click()
Dim fin_tableau As Long
If MsgBox("Confirmez-vous l'insertion de ce nouveau contact ?", vbYesNo, "Demande de confirmation d'ajout") = vbYes Then
L = Range("A5").End(xlDown).Address
Range(L).Select 'L correspond à la dernière cellule du tableau
Selection.Offset(1, 0).Activate
fin_tableau = ActiveCell.Row
Range("A" & fin_tableau).Value = ComboBox1
Range("B" & fin_tableau).Value = TextBox1
Range("H" & fin_tableau).Value = TextBox2
End If
End Sub
avec plaisir
supzak