Option Explicit
Sub CEEouNon()
Dim DL%, Item$, Réponse$, L%, Li%
With Sheets("Pays")
DL = [A65500].End(xlUp).Row
For Li = 2 To DL
Réponse = ""
Item = Cells(Li, "A")
For L = 1 To .[A65500].End(xlUp).Row
If Item Like "*" & .Cells(L, "B") & "*" Then Réponse = .Cells(L, "C"): Exit For
Next L
If Réponse = "" Then
For L = 1 To .[E65500].End(xlUp).Row
If Item Like "*" & .Cells(L, "F") & "*" Then Réponse = .Cells(L, "G"): Exit For
Next L
End If
If Réponse = "" Then Cells(Li, "B") = "Non trouvé" Else Cells(Li, "B") = Réponse
Next Li
End With
End Sub