Bonjour,
j'ai peut être un code qui peux fonctionner, je l'ai testé sur ton fichier il m'a l'air de fonctionner correctement.
Sub DeleteRows()
Dim i As Long
For i = Cells(Rows.Count, "B").End(xlUp).Row To 1 Step -1
If IsNumeric(Cells(i, "B").Value) Then
If Cells(i, "B").Value = 1 Then Rows(i).Delete
ElseIf IsNumeric(Cells(i, "C").Value) Then
If Cells(i, "C").Value = 1 Then Rows(i).Delete
End If
Next i
End Sub