Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
Dim Desti As Range, re As Range
'Range("C2:C400000").Interior.ColorIndex = 2
If TextBox1 <> "" Then
Set re = Range("C2:C400000").Find(TextBox1.Value, lookat:=xlWhole)
If Not re Is Nothing Then
re.Interior.ColorIndex = 43
re.Offset(, -1) = "NPAI"
' Intersection des colonne A:G et de la ligne de re
Set Source = Intersect(ThisWorkbook.Sheets("Feuil1").[A:G], re.EntireRow)
Source.Copy Workbooks("Classeur1").Sheets("FEUIL1").Cells(Rows.Count, 1).End(xlUp)(2)
End If
End If
TextBox1.Value = ""
Cancel = True
End Sub