Bonjour atlonia,
Sub partie1()
Dim y As Integer, i As Integer, x As Integer, LastRw As Long
With Sheets("Partie 1")
LastRw = .Cells(Rows.Count, 1).End(xlUp).Row
For i = 8 To LastRw Step 3
For y = 2 To 6 Step 4
.Cells(i, y).ClearContents
Next
Next
For i = 8 To LastRw Step 3
For y = 2 To 6 Step 4
.Cells(i, y).Value = Sheets("Tirages Equipes").Cells(3 + x, 2).Value
x = x + 1
Next
Next
End With
End Sub
edit: ce nouveau code est dans le Module02
et j'ai ajouté au à la macro TêteÀtête ( voir: Call partie1)