Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo Fin: If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, [BV25:BV33]) Is Nothing Then
Application.ScreenUpdating = False
Valeur = Cells(Target.Row, "D")
Ligne = Application.Match(Valeur, Sheets("Feuil2").[B:B], 0)
Sheets("Feuil3").[C2] = Sheets("Feuil2").Cells(Ligne, "L")
End If
Fin:
End Sub