Sub test()
Dim tableau, Derlig&
With Sheets(1) 'remplacer 1 par l'index ou le nom de la sheets source
tableau = Array(.[A2], .[b2], .[d3], .[f4], .[h8], .[d8], .[j4], .[j8], .[l4], .[b8], .[f10], .[d11], .[f13], .[h3], .[i11], .[b11])
End With
With Sheets(2) 'remplacer 2 par l'index ou le nom du sheets de destination
Derlig = .Cells(Rows.Count, "A").End(xlUp).Row + 1
.Cells(Derlig, "A").Resize(, UBound(tableau) + 1) = tableau
End With
End Sub