Sub Transfert()
Dim dl%, i%
With Sheets("Fiche suivi")
dl = .Range("B" & Rows.Count).End(xlUp).Row + 1
For i = 2 To 6
.Cells(dl, i) = Cells(i, "B"): Cells(i, "B") = ""
Next i
For i = 8 To 15
.Cells(dl, i - 1) = Cells(i, "C"): Cells(i, "C") = ""
Next i
End With
End Sub