Sub ici_agent()
'
' ici_agent Macro
'
'
Dim Cellule_en_Cours As Range
On Error Resume Next
Set Cellule_en_Cours = Rows("5:5").Find(What:=[G2].Value, After:=[A5], LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=True _
, SearchFormat:=False)
On Error GoTo 0
If Cellule_en_Cours Is Nothing Then
MsgBox [G2].Value & " non trouvé !", vbOKOnly + vbInformation
Else
Application.Goto Reference:=Cellule_en_Cours, Scroll:=True
Set Cellule_en_Cours = Nothing
End If
End Sub