Sub InserLignes()
Application.ScreenUpdating = False
Dim lig As Long
Dim x As Integer, i As Integer
Dim c1 As Range
For lig = Cells(Rows.Count, 1).End(xlUp).Row To 4 Step -1 'De la dernière ligne de la colonne A (1) à la 1ère ligne à traiter(4)
x = Cells(lig, "R") - 1 'R est la colonne indiquant le nombre de lignes à insérer
If x > 0 Then 'Si la valeur de R-1 est supérieure à 0
Rows(lig + 1).Resize(Cells(lig, "R") - 1).Insert Shift:=xlDown 'Ajout des x lignes
Cells(lig, 1).Resize(Cells(lig, "R"), 18).FillDown 'Copie de la ligne vers les lignes insérées
For i = 0 To x - 1
Set c1 = Range("E" & lig + i & ":Q" & lig + i).Find(1) '1ère colonne de la plage F:Q contenant 1
Range(Cells(c1.Row, c1.Column + 1), Cells(c1.Row, "Q")).ClearContents 'Efface les 1 après la 1ère colonne contenant 1
Range(Cells(c1.Row + 1, c1.Column), Cells(c1.Row + x - i, c1.Column)).ClearContents 'Efface les 1 des lignes du dessous de la 1ère colonne contenant 1
Next i
End If
Next lig
End Sub