[I]Sub IP_xxxxx (NomFeuille as string)
Sheets([I]NomFeuille[/I]).Select
Cells.Find(What:="IP_" &NomFeuille, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=True, SearchFormat:=False).Activate
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
Sheets("CLIENT").Select
Range("A65536").Select
Selection.End(xlUp).Select
ActiveCell.Offset(2, 0).Select
ActiveSheet.Paste
Sheets([I]NomFeuille[/I]).Select
Application.CutCopyMode = False
End Sub[/I]
[I]