Sub TriSansDoublons_avec_FiltreAvancé()
Dim ar, i As Long
Cells(1, 11).CurrentRegion.ClearContents
Cells(1).CurrentRegion.AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Cells(1, 11), Unique:=True
With ActiveSheet.Sort
.SortFields.Clear
.SortFields.Add Key:=Cells(1, 11).CurrentRegion.Offset(1, 0).Columns(1), SortOn:=xlSortOnValues, Order:=xlAscending
.SortFields.Add Key:=Cells(1, 11).CurrentRegion.Offset(1, 0).Columns(2), SortOn:=xlSortOnValues, Order:=xlAscending
.SetRange Cells(1, 11).CurrentRegion
.Apply
End With
End Sub