Sub supprimer_produit()
Dim cel As Range
Dim n
Sheets("BD").Select
With Sheets("utilisateurs")
For i = Cells(Rows.Count, "H").End(xlUp).Row To 1 Step -1
Set cel = .Columns("J").Find(Cells(i, "H"))
If Not cel Is Nothing Then
Rows(i).Delete Shift:=xlUp:n=n+1
End If
Next
End With
Msgbox n & " lignes supprimées !"
End Sub