Sub ajouter()
' ajouter Macro
Dim mouvement$, compte$, montant$, libelle$, bool As Boolean
'trouver les informations du contenu
With Worksheets("accueil")
mouvement = .Range("c5").Value: bool = mouvement <> ""
compte = .Range("c7").Value: bool = bool And compte <> ""
montant = .Range("c9").Value: bool = bool And montant <> ""
libelle = .Range("c11").Value: bool = bool And libelle <> ""
If bool Then
arr = Array(Date, .[C5], .[C7], .[C9], .[C11])
With Sheets("compte").ListObjects("Tableau2")
.ListRows.Add
'MsgBox .ListRows(.ListRows.Count).Range.Address
.ListRows(.ListRows.Count).Range = arr
End With
Else
MsgBox "remplissez toute les cases SVP" & vbCrLf & " si toute fois vous refuseriez de les remplir ce classeur s'auto détruira dans 1 seconde"
End If
.Range("C5,C7,C9,C11").ClearContents
End With
End Sub