Bonjour Anarium
Bravo d'avoir trouvé tout seul et d'avoir donné le code correspondant
En passant par des variables, vous pouvez faire également
Private Sub CommandButton1_Click()
Dim dLig As Long, nCol As Long
With Sheets("Connexions")
dLig = .Range("A" & Rows.Count).End(xlUp).Row
nCol = .Cells(dLig, Columns.Count).End(xlToLeft).Column + 1
With .Cells(dLig, nCol)
.Value = TextBox1.Value
.Interior.ColorIndex = 3
End With
End With
Unload Me
End Sub
A+