Sub Recherche1()
Dim toto As Long, Cel As Range
toto = ActiveCell.Value
If toto <> "0" Then
Set Cel = Sheets("Feuille").Cells.Find(What:=toto, After:=Range("G1"), LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False)
If Not Cel Is Nothing Then
Cel.Offset(0, 2).Value = "Trouvé"
End If
End If
End Sub