Bonjour,
PAr code, tu peux essayer ceci :
Sub test()
'Macro dan
Dim dlg As Integer, k As Integer, j As Integer
Application.ScreenUpdating = False
dlg = Range("D" & Rows.Count).End(xlUp).Row
k = Range("F" & Rows.Count).End(xlUp).Row + 1
For j = 1 To dlg Step 10
Range("D" & j & ":D" & j + 9).Copy
Range("F" & k).PasteSpecial Paste:=xlPasteValues, Transpose:=True
k = k + 1
Next
Application.CutCopyMode = False
End Sub
Code à placer dans un module en VBA
Si ok, clique sur le V vert à coté du bouton EDITER pour cloturer le fil lors de ta réponse
Crdlt