Option Explicit
Sub Creation_Tableau()
'Création tableau
Range(Selection, Selection.End(xlDown)).Select
Application.CutCopyMode = False
'Création d'un nom pour le tableau
ActiveSheet.ListObjects.Add(xlSrcRange, Range("$A$1:$F$53"), , xlNo).Name = _
"Tableau_Compte"
Range("Tableau_Compte[[#Headers],[Colonne1]]").Select
ActiveCell.FormulaR1C1 = "Date"
Range("Tableau_Compte[[#Headers],[Colonne2]]").Select
ActiveCell.FormulaR1C1 = "Dépenses"
Range("Tableau_Compte[[#Headers],[Colonne3]]").Select
ActiveCell.FormulaR1C1 = "Revenus"
Range("Tableau_Compte[[#Headers],[Colonne4]]").Select
ActiveCell.FormulaR1C1 = "Débiteur"
Range("Tableau_Compte[[#Headers],[Colonne5]]").Select
ActiveCell.FormulaR1C1 = "Types de Dépense"
Range("Tableau_Compte[[#Headers],[Colonne6]]").Select
ActiveCell.FormulaR1C1 = "Types de Revenu"
End Sub