Bonsoir,
J'aimerai comprendre cette partie de code :
Private Sub CmdValider_Click()
Dim y$, Ligne%, Colonne%
y = Format(Date, "dddd, mmmm dd, yyyy")
If Me.ComboBox1 = "Alpha" Then Colonne = 1
With Sheets(x)
For i = 1 To .Cells(Rows.Count, 1).End(xlUp).Row
If .Cells(i, 3).Text = y Then
Ligne = .Cells(i, 3).Row
.Cells(Ligne, Colonne + 5) = Me.ComboBox1.Value
.Cells(Ligne, Colonne + 16) = Me.TextBox1.Value
End If
Next
Merci à vous
koukou40