Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Checklist to make worksheets visible

Is it possible to set up a checklist on a worksheet where each checked
item determines if a worksheet is visible or not? If I have worksheets
A, B, C, D, E, & F; I'd like the user to put a check mark in front of
whichever sheets he/she wants to see, e.g. A, D, & E. Any ideas?
  #2   Report Post  
Posted to microsoft.public.excel.programming
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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I make one column or row always visible? Ao Excel Discussion (Misc queries) 8 April 23rd 23 09:01 PM
How can I make a drop down box visible within a worksheet? skittles_golf Excel Worksheet Functions 42 April 21st 23 02:59 PM
Make Object(s) Visible Dennis Excel Discussion (Misc queries) 2 May 19th 09 06:24 PM
make outlook visible gopher Excel Programming 5 January 5th 05 06:15 PM
better search: "make worksheet visible" christo Excel Discussion (Misc queries) 1 December 1st 04 12:20 AM


All times are GMT +1. The time now is 05:21 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"