Sub InsererEntreChaqueligne()
Application.ScreenUpdating = False
With ActiveSheet
LastLine = .Range("A" & .Rows.Count).End(xlUp).Row
Set zone = .Range("A2:F" & LastLine)
.Sort.SortFields.Clear
.Sort.SortFields.Add2 Key:=zone.Columns(1).Offset(1, 0), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
With .Sort
.SetRange zone
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
For i = LastLine To 4 Step -1
.Rows(i).Resize(9).Insert
Next i
End With
Application.ScreenUpdating = True
MsgBox "OK"
End Sub