Set Wb_TRAV = Workbooks("TRAV.xls")
For n = 2 To [B65536].End(xlUp).Row
With Wb_TRAV.Sheets("TRA08E")
Set nom = .Columns("B").Find(Range("B" & n).Value, LookIn:=xlValues, lookat:=xlWhole)
If Not nom Is Nothing Then
Range("D" & n).Value = nom.Offset(0, 1).Value
End If
End With
Next