Private Sub CmD_Valider_Click()
Dim PCV As Long
With Worksheets("feuil1")
PCV = .Range("B" & .Rows.Count).End(xlUp).Row + 1
.Cells(PCV, 1) = Reference.Value
.Cells(PCV, 2) = Nom.Value
.Cells(PCV, 3) = Prenom.Value
.Cells(PCV, 4) = Designation.Value
.Cells(PCV, 5) = Montant.Value
End With
End Sub