1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| Option Explicit
Private Sub CheckBox5_Click()
'CheckBox Oui Surmoulage
'Label1 = Surmoulage
Application.DisplayAlerts = False
If CheckBox5.Value = True Then
CheckBox6.Value = False
End If
'recherche et masque ligne marquée surmoulage
i = 1
With Sheets("Liste process Impactés")
While .Cells(i, 1) <> "" '--- tant que non vide
If .Cells(i, 1) = "Surmoulage" Then
.Rows(i).Hidden = False
End If
i = i + 1
Wend
End With
End Sub
Private Sub CheckBox6_Click()
'non Surmoulage
Application.DisplayAlerts = False
If CheckBox6.Value = True Then
CheckBox5.Value = False
End If
'recherche et affiche ligne marquée surmoulage
i = 1
With Sheets("Liste process Impactés")
While .Cells(i, 1) <> "" '--- tant que non vide
If .Cells(i, 1) = "Surmoulage" Then
.Rows(i).Hidden = True
End If
i = i + 1
Wend
End With
End Sub |