If MsgBox("Ajouter une nouvelle Ligne ? " & Chr(10) & TextePopUp, vbYesNo, _
" Demande de confirmation d’ajout ") = vbYes Then
LastLigne = Sheets("COMPTES").Range("a65536").End(xlUp).Row + 1
Dim c, x&
For Each c In Me.Controls
DEBIT.Value = Format(DEBIT.Value, "#,##0.00 €")
CREDIT.Value = Format(CREDIT.Value, "#,##0.00 €")
' .Range("P:S").EntireColumn.NumberFormat = "#,##0.00 €"
If c.Tag <> "" Then
x = c.Tag
If IsDate(c.Value) Then
Feuil3.Cells(LastLigne, x).Value = CDate(c.Value)
Else
Feuil3.Cells(LastLigne, x).Value = c.Value
End If
End If
Next
End If