Sub ChercherIntrus()
Set Liste = Sheets("liste").Range("C11:C" & Sheets("liste").[C1000000].End(xlUp).Row)
With Sheets("data")
DL = .[B1000000].End(xlUp).Row: Tablo = .Range("A1:I" & DL)
End With
[F2:H100000].ClearContents: Ligne = 2
For L = 5 To UBound(Tablo)
For C = 2 To UBound(Tablo, 2) Step 2
If Application.CountIf(Liste, Tablo(L, C)) = 0 Then
Cells(Ligne, "F") = L: Cells(Ligne, "G") = C
Cells(Ligne, "H") = Tablo(L, C)
Ligne = Ligne + 1
End If
Next C
Next L
End Sub