+ Reply to Thread
Results 1 to 5 of 5

Command button to show hidden worksheet

Hybrid View

  1. #1
    Registered User
    Join Date
    08-28-2013
    Location
    arizona
    MS-Off Ver
    Excel 2007
    Posts
    4

    Smile Command button to show hidden worksheet

    Hello,

    I'm interested in learning VBA. I would like to creat a command button that shows a hidden sheet. The only sheet that will be visible is the INDEX sheet which will host several command buttons that will show its respective sheet.

    When the user is done witht he sheet--once hit the home button they will be redirected to the INDEX sheet and the sheet will go back to being hidden.

    I have no idea how to begin this process.

    Can someone please help me?

    Thanks in advance.

  2. #2
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Re: Command button to show hidden worksheet

    Good evening Chioma

    ...and welcome to the forum!!
    Quote Originally Posted by Chioma1975 View Post
    I'm interested in learning VBA.
    Excellent choice. The best place to begin is to use the macro recorder. This will generate code for you in the first instance and allow you to hide and unhide sheets as if by magic.
    Use the Insert > Form Controls from the Developer tab to draw a button and link a macro to it.

    You'll be surprised at how easy it all is

    HTH

    DominicB

  3. #3
    Registered User
    Join Date
    08-28-2013
    Location
    arizona
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Command button to show hidden worksheet

    Hi Dominic,

    Thank you for replying. So far this is what I have


    Private Sub CommandButton4_Click()
        Sheets("Summary 1").Visible = True
        Sheets("Summary 1").Activate
    End Sub
    but once the user is done with the tab and hits the "Index" button, I want the tab to become hidden again. Do I have to combine that into the formula or do I have to create a new module? I inserted a moduel and I have this

    Sub Macro1()
    Sheets("Index").Select
        Sheets("Index").Activate
        ActiveWindow.SelectedSheets.Visible = False
    But when I hit the "Index" button on the active sheet--it takes me back to the index--however the Summary 1 tab wasnt hidden, it remained visible.

    HELPP MEEEEEE

    Last edited by dominicb; 08-29-2013 at 05:15 PM.

  4. #4
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Re: Command button to show hidden worksheet

    Hi Chioma1975

    Next time you post code, please use the code tags (# in the menu above) to mark your code - I have done it for you this time.

    Remember, you're working with computers here - you have to be very literal and very specific.
    If you want to unhide one sheet and hide another, then that is exactly what you will need to tell Excel to do.
    You will also need a new module - linked to a new button - for every sheet you want to use.
    Also, always unhide a sheet before you hide the other one - Excel likes to always show at least one sheet and your code will halt if you try and leave Excel (even for a fraction of a second) without at least one sheet visible.

    One final word - the macro recorder is great. But it doesn't always create the neatest code. Try tidying your code up as I have shown below. You don't always need to activate an object (in this case, a worksheet) to work with it. The code is very similar to yours but brief. It will make Sheet1 unhidden and hide Sheet2.

    Sub test()
    Sheets("Sheet1").Visible = True
    Sheets("Sheet2").Visible = False
    End Sub
    HTH

    DominicB
    Last edited by dominicb; 08-29-2013 at 05:25 PM.

  5. #5
    Registered User
    Join Date
    08-28-2013
    Location
    arizona
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Command button to show hidden worksheet

    Hi Dominic,

    Thank you for the advise. It was incredibly helpful in guiding me to the exact code needed. After using the code you provided above, I received an error message once it was applied. I then altered it a bit and ended up with this:

    Private Sub CommandButton1_Click()
    Sheet17.Select
    Sheet4.Visible = False
    End Sub

    This seemed to do the trick.


    Now my next project is to create command buttons that can be used to manipulate pivot tables. Is that even possible?

    My hope is: rather than saturate the worksheet with tons of full spectrum data, have the user choose which areas they would like to view either through a command button or a drop down list.

    If you are able to help me with this, I would be incredibly grateful. Thanks again for your guidance. This has been an exciting new world of VBA that I look forward to further exploring.
    Last edited by Chioma1975; 09-03-2013 at 12:27 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Show worksheet from Command Button?
    By themikeford in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-09-2012, 10:32 PM
  2. Worksheet Change Event to Show Command Button
    By ker9 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-21-2011, 04:39 PM
  3. Show hidden sheets using a button
    By ncaravela in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-03-2010, 10:11 AM
  4. Show command Button on worksheet when cell = True
    By adam2308 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 12-20-2009, 05:08 PM
  5. command button on/off (show/hide)
    By gobbolino in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-13-2007, 10:35 PM

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