bonsoir,
une proposition de macro, pour supprimer les montants présents en colonnes A et B
Sub supdoub()
dla = Range("a" & Rows.Count).End(xlUp).Row
dlb = Range("b" & Rows.Count).End(xlUp).Row
Set ra = Range("a1:a" & dla)
Set rb = Range("b1:b" & dlb)
For Each c In ra
Set rf = rb.Find(c.Value)
If Not (rf Is Nothing) Then
c.Delete Shift:=xlUp
rf.Delete Shift:=xlUp
End If
Next
End Sub