Private Sub btnenregistrer_Click()
Dim N%
Sheets("Suivi de chantier").Activate
With [Tableau4]
N = .Rows.Count + 1 ' Première ligne vide de Tableau4
.ListObject.ListRows.Add ' Ajouter une ligne au tableau structuré
.Cells(N, "A") = txtfolio.Value ' Remplit le tableau avec les valeurs du Userform
.Cells(N, "B") = txtca
.Cells(N, "C") = txtsyst
.Cells(N, "D") = txtn
.Cells(N, "E") = txtbig
.Cells(N, "F") = txtdesignation
.Cells(N, "G") = txtot
.Cells(N, "H") = txtos
.Cells(N, "I") = txtoi
.Cells(N, "J") = txtrecule
End With
MsgBox "Votre dossier a bien été enregistré", vbOKOnly + vbInformation, "CONFIRMATION"
End Sub