Sub Sortie()
With Sheets("Liste")
DL = .[A65000].End(xlUp).Row
Range("J8:K8").ClearContents
Range("J10:K12").ClearContents
For L = 2 To DL
If .Cells(L, "A") = [I8] And .Cells(L, "E") = "" Then
.Cells(L, "E") = Now
.Cells(L, "F") = .Cells(L, "E") - .Cells(L, "D")
[J8] = .Cells(L, "B")
[K8] = .Cells(L, "C")
[J10] = .Cells(L, "D")
[J12] = .Cells(L, "E")
Exit For
End If
Next L
End With
End Sub