Sub recap()
Dim lig%, col%, bas%
Feuil1.Select
With Feuil2
.[B7:Z65000].ClearContents
For lig = 4 To [B65000].End(3).Row
col = ((Cells(lig, 2) - 2021) * 6) + 2
bas = Feuil2.Cells(65000, col).End(3).Row + 1
.Range(.Cells(bas, col), .Cells(bas, col + 4)).Value = _
Range("B" & lig & ":F" & lig).Value
Next
End With
End Sub