Bonjour
Svp quelqu'un pourrait voir qu'est ce que je pourrai modifier sur cette ligne de code pour effectuer la recherche sur la plage du bas vers le haut.
Dim rcel As Range, L As Long
Set rcel = Worksheets("Feuil1").Columns(4).Find(what:=Me.TextBox13.Text, lookat:=xlWhole, LookIn:=xlValues, searchdirection:=xlNext)
L = rcel.Row
If TextBox13.Text = Cells(L, 4) Then
ComboBox1.Value = Cells(L, 9)
ComboBox2.Value = Cells(L, 10)
TextBox12.Value = Cells(L, 11)
TextBox4.Text = Left(Cells(L, 12), 3)
TextBox5.Text = Mid(Cells(L, 12), 5, 3)
TextBox6.Text = Mid(Cells(L, 12), 9, 3)
TextBox7.Text = Mid(Cells(L, 12), 13, 3)
TextBox8.Text = Mid(Cells(L, 12), 17, 3)
TextBox9.Text = Mid(Cells(L, 12), 21, 3)
TextBox10.Text = Mid(Cells(L, 12), 25, 3)
TextBox11.Text = Right(Cells(L, 12), 3)
End If
Merci d'avance