+ Reply to Thread
Results 1 to 2 of 2

hidding worksheet within a workbook

  1. #1
    Colin2u
    Guest

    hidding worksheet within a workbook

    is there a way to hide/unhide a worksheet in a given workboot without
    disturbing the other worksheets of that workbook?

  2. #2
    STEVE BELL
    Guest

    Re: hidding worksheet within a workbook

    Use these 3:

    Sheets(1).Visible = True ' unhide a sheet
    Sheets(1).Visible = False ' hide a sheet
    Sheets(1).Visible = xlVeryHidden ' really hide a sheet - sheet can only be
    accessed with code.

    you can use Sheets("Sheet1")
    or
    set wkst = Sheets("Sheet1")
    wkst.Visible=True
    --
    steveB

    Remove "AYN" from email to respond
    "Colin2u" <Colin2u@discussions.microsoft.com> wrote in message
    news:914E0766-A90D-4C1F-8458-914B81BCFD7A@microsoft.com...
    > is there a way to hide/unhide a worksheet in a given workboot without
    > disturbing the other worksheets of that workbook?




+ 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