Bonjour,
pour transférer les données,
Sub RECAP()
Dim sh1, sh2, sh3, x1 As String, x2 As String, colonne As Integer
Set sh1 = Sheets("CONTROLE TEMPLATE")
Set sh2 = Sheets("CONTROLE TEMPLATE clt")
Set sh3 = Sheets("RECAP")
sh3.Cells.ClearContents
x1 = Split(sh1.Range("A1").CurrentRegion.Address(0, 0), ":")(1)
x2 = Split(sh2.Range("A1").CurrentRegion.Address(0, 0), ":")(1)
colonne = Range(x1).Column
rw2 = Range(x2).Row
sh3.Range("A2:" & x1).Value = sh1.Range("A2:" & x1).Value
n = sh3.Cells(Rows.Count, 1).End(xlUp).Row + 1
n1 = n + rw2 - 2
sh3.Range(Cells(n, 1).Address, Cells(n1, colonne).Address).Value = sh2.Range(Cells(2, 1).Address, Cells(rw2, colonne).Address).Value
End Sub