J'ai un problème au niveau de Range(Cells(i, "K"), Cells(b, g) = ""
Dim b,g As Long
b = Cells(Rows.Count, "B").End(xlUp).Row
g = Cells(6, Columns.Count).End(xlToLeft).Column
For i = 156 To b
'Si les cellules de la colonne J ne comportent pas une erreur
If Not IsError(Cells(i, "J")) = True Then
If Cells(i, "K").Value <= 0 And Cells(i, "J").Value <= 0 And Range(Cells(i, "K"), Cells(b, g) = "" Then Rows(i).EntireRow.Delete
End If
Next i