exemple code:
nR = [Tableau16].Columns(1).SpecialCells(xlCellTypeVisible).Count '--- nb de lignes visibles du Tableau16 après filtrage
kR = [Tableau1].Rows.Count '--- nb de lignes dans Tableau1
'colonnes coller
[Tableau16].Columns(2).Copy [Tableau1].Cells(kR + 0, 3)
[Tableau16].Columns(8).Copy [Tableau1].Cells(kR + 0, 4)
'couleur
With Range([Tableau1].Cells(kR + 0, 1), [Tableau1].Cells(kR + nR, 1)).Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
[Tableau16].Columns(8).Copy [Tableau1].Cells(kR + 0, 4)
With Range([Tableau1].Cells(kR + 0, 1), [Tableau1].Cells(kR + nR, 1)).Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0