Bonjour à tous,
Une variante....à tester...
Private Sub CommandButton1_Click()
With Sheets("Feuil1")
If Me.TextBox1 = "" Then Exit Sub
dl = IIf(.Range("N" & Rows.Count).End(xlUp).Row + 1 < 15, 15, .Range("N" & Rows.Count).End(xlUp).Row + 1)
.Cells(dl, "N") = Me.TextBox1
End With
End Sub
Cordialement,