NbLig = Sheets("TEST").[A65000].End(xlUp).Row
Set Plg = Sheets("TEST").Range(Sheets("TEST").Cells(2, 1), Sheets("TEST").Cells(NbLig, 1))
With Plg
Set R = .Find(TextBox1.Value, LookIn:=xlValues, LookAt:=xlWhole)
If Not (R Is Nothing) Then
ligr = Mid(R.Address, 4, Len(R.Address)) 'N° ligne
Else
MsgBox "Ce numéro d'immat. n'existe pas. Merci de vérifier la correspondance", vbInformation + vbOKOnly, "Immat non trouvée!"
Exit Sub
End If
End With
Me.TextBox2 = Sheets("TEST").Range("B" & ligr)