Sub Copier_Coller_Modifier_Lignes()
Dim Status As Range, Plage As Range
Dim DerLigne As Long, Ligne As Long
Application.ScreenUpdating = False
Worksheets("FAMILLE").Activate
DerLigne = Range("A" & Rows.Count).End(xlUp).Row
Set Plage = Range(Cells(1, 2), Cells(DerLigne, 2))
For Each Status In Plage
If Status = "PAPA" Then
Cells(Status.Row + 1, 1).EntireRow.Insert Shift:=xlDown
Cells(Status.Row + 1, 2) = "Fils"
End If
Next Status
End Sub