Sub ChercheClient()
Ligne = 2: Nom = [Q1]: [Q2:R1000].ClearContents
Application.ScreenUpdating = False
tablo = Sheets("Archives (2)").Range("Tableau")
Cmax = UBound(tablo, 1)
For L = 1 To UBound(tablo)
If tablo(L, 2) = "client" Then
For C = 3 To Cmax
If tablo(L, C) = Nom Then
Cells(Ligne, "Q") = tablo(1, C)
Cells(Ligne, "R") = tablo(L, 1)
Ligne = Ligne + 1
End If
Next C
End If
Next L
End Sub