Public Sub CopyRows()
Sheets("Feuille avec code").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
For x = 2 To FinalRow
ThisValue = Cells(x, 12).Value
If ThisValue = "Remis" Then
Cells(x, 1).Resize(1, 14).Copy
Sheets("Feuille ou je veux copier").Select
NextRow = Cells(Rows.Count, 1).End(xlUp).Row + 1
Cells(NextRow, 1).Select
ActiveSheet.Paste
Sheets("Feuille ou je veux copier").Select
End If
Next x
End Sub