Private Sub CommandButton1_Click()
If MsgBox("Etes-vous sûr de vouloir sauvegarder ?", vbYesNoCancel + vbQuestion + vbDefaultButton1, "Sauvegarde") = vbYes Then
Dim counter As Integer
counter = 0
Sheets("TRAVAUX").Activate
Range("L1").Select
Do While ActiveCell <> ""
If ActiveCell = Me.TextBox1.Value Then
ActiveCell.Offset(0, 17).Value = ComboBox1
End If
ActiveCell.Offset(1, 0).Select
counter = counter + 1
Loop
MsgBox (counter & " Lignes ont été vérifiées"), vbOKOnly + vbInformation
MsgBox "Le contenu a été Sauvegarder !", vbOKOnly + vbInformation
End If
End Sub