........
.........
Columns("A:A").Select
[B][COLOR=red]Set trouve = Selection.Find(What:=TextBox1.Value, After:=ActiveCell, LookIn:=xlFormulas, _[/COLOR][/B]
[B][COLOR=red]LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _[/COLOR][/B]
[B][COLOR=red]MatchCase:=False, SearchFormat:=False)[/COLOR][/B]
[B][COLOR=red]If Not trouve Is Nothing Then[/COLOR][/B]
If [B][COLOR=red]trouve[/COLOR][/B].Offset(0, 1) = "Rarement ou jamais" Then
Sheets("save_data").Visible = False
Sheets("Questio").Select
Application.ScreenUpdating = True
Unload UserForm1
UserForm3.Show
ElseIf [B][COLOR=red]trouve[/COLOR][/B].Offset(0, 3) = "" Then
Sheets("save_data").Visible = False
Sheets("Questio").Select
Application.ScreenUpdating = True
Unload UserForm1
UserForm_satisfaction.Show
Else: Sheets("save_data").Visible = False
Sheets("Questio").Select
Application.ScreenUpdating = True
Unload UserForm1
UserForm_End.Show
End If
Else: UserForm1.Hide
UserForm2.Show
End If
.............
.............
............