View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
pezyo pezyo is offline
external usenet poster
 
Posts: 1
Default Checklist to make worksheets visible

Kent,
One option would be to add sheet level check box controls to a
worksheet. The worksheet code would look something like this:

Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
Sheets("A").Visible = True
Else
Sheets("A").Visible = False
End If
End Sub
Private Sub CheckBox2_Click()
If CheckBox2.Value = True Then
Sheets("B").Visible = True
Else
Sheets("B").Visible = False
End If
End Sub
etc...

You would repeat the code for however many worksheets you wanted to be
able to toggle.
I hope that will work for you.

-pezyo