Sub Che() 'Inserrer en fin de tableau+2 les lignes validées
Dim lig&, i&
With Range("A9").CurrentRegion.Resize(, 12)
lig = .Rows.Count + 2
For i = .Rows.Count To 1 Step -1
If .Cells(i, 1).Interior.Color = RGB(0, 176, 240) And .Cells(i, 10) = 100 Then
.Rows(i).Cut 'couper
.Rows(lig).Insert xlDown 'insérer
lig = lig - 1
End If
Next
End With
End Sub