Re-
Cf le fichier ci-joint, et le code ci-dessous :
Sub SuppDoublon()
Dim x As Long, y As Long
For x = 2 To Range("A" & Rows.Count).End(xlUp).Row
If Cells(x, 1) & Cells(x, 2) & Cells(x, 3) = "" Then Exit For
For y = x + 1 To Range("A" & Rows.Count).End(xlUp).Row
If Cells(y, 1) & Cells(y, 2) = Cells(x, 1) & Cells(x, 2) Then
Cells(x, Cells(x, 10000).End(xlToLeft).Column + 1) = Cells(y, 3)
Cells(x, Cells(x, 10000).End(xlToLeft).Column).HorizontalAlignment = xlCenter
x = x - 1
Rows(y).Delete Shift:=xlUp
Exit For
End If
Next
Next
End Sub
Si il y a des éléments identiques en colonne A et B, alors le Pays est reportées sur la ligne la plus en haut, et le doublon est supprimer
Restant à ta dispo