+ Reply to Thread
Results 1 to 6 of 6

Hide/Unhide Tabs VBA

  1. #1
    Registered User
    Join Date
    08-18-2007
    Posts
    62

    Hide/Unhide Tabs VBA

    --------------------------------------------------------------------------------

    I have Excel report that have 20+ tabs (too many for a single report) this report is intended for several people and these people may just want to see only one tab on the wookbook or all of them, so I think the best solution is to hide the tabs and use several macro/buttons in the first tab (each named for each tab) to see the tabs. When the work book opens all the tabs will be hidden except the Main tab where all buttons are.

    The first tab has two buttons to “Show All” and “Hide All” plus several buttons named for each tabs, each tab have a "Hide Tab"-"Main Page" buttons.

    The macros (showall/hideall) works fine if all the tabs are visible or hidden, or when I click in a individual name button to unhide a tab. . If I unhide individual tabs with individual buttons and the use the “Show All” button, everything works fine, the rest of the tabs will appear on the work book, but if I use the “Hide All” button when some tabs are visible it gives me a error Run time error; ‘1004 Select Method of Sheets class failed. What I thing is happening is that the macro is looking for all the tabs recorded on the macro to be visible and stops and the macro giving me the error.

    What is the best VBA approach to overcome this problem? Can I modify the macro or sheet properties to make it work? Or my only solution is VBA?

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Without seeing your code i would say that you are selecting the sheets, which is causing the error & is totally unnecessary. Try this

    Add a button from the Commands Toolbox
    Change the caption to Hide Sheet 2
    Add this code

    Please Login or Register  to view this content.
    Last edited by royUK; 08-18-2007 at 02:12 PM.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Registered User
    Join Date
    08-18-2007
    Posts
    62

    Thanks for the replay

    Roy, Thanks for the replay. Yes I’m selecting the sheets when recording the macro.

    I made a small workbook with 5 sheets and replaced the code for the bottoms (4) with your code, but when made another button for the "Hide All" and record the macro and run it with 2 sheets visible, the same error is popping up; Run time error '1004' Selected Method of Sheet Class Failed.
    It does it when some sheets are visible or when all are hiden.
    I think I can disable "Hide All" and enable "Show All" after the sheets are hiden to avoid user presing "Hide All" again, but the problem is when some are visible.
    Please Login or Register  to view this content.
    Please Login or Register  to view this content.

    I think the more accurate question will be; “How can I hide the all the sheets when some of them are still visible with the “Hide All” button, what will be the best construct to use in the “Hide All”- “Show All” buttons.


    Also want to make clear that all buttons are in Sheet1, and this should be always visible, and sheet have names, so no Sheet1, Sheet2 can be use as default.

    Hope this is more understandable

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    The way to handle this is to program against the codename of the sheet rather than the name. The code name does not change when the name displayed in the sheet tab does.
    If you look at the properties window in VBE you will see, within the projects Microsoft Excel Objects, a list of Sheets. Each entry has 2 names.
    eg.

    Sheet1 (Sheet1)

    The name in brackets is the NAME property and the text displayed on the sheet tab. The other is the codename. Whilst it is possible to change the code name you can only do this at design time AND if you have access to the vba project. So you use the code name, that way if the sheets are renamed or moved the code will still work.

    I said you don't need to select the sheets to hide/unhide them.
    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    08-18-2007
    Posts
    62

    Works Great!

    Roy, the code work perfect! and eleminated the error too!

    Thanks a lot.

  6. #6
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Thanks for letting us know.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1