+ Reply to Thread
Results 1 to 3 of 3

Hide worksheet

  1. #1
    kuansheng
    Guest

    Hide worksheet

    Hi Guys,

    I was wondering if it is possible to hide a worksheet from user view.
    and let the worksheet work behind the scene


  2. #2
    Norman Jones
    Guest

    Re: Hide worksheet

    Hi Kuansberg,

    Try:
    Format | Sheet | Hide

    The user will be able to unhide the sheet by using the same menu path.

    To hide the sheet more securely would require the use of VBA, e,g:

    '=============>>
    Public Sub Tester001()
    Dim sh As Worksheet

    Set sh = ActiveWorkbook.Sheets("Sheet2")
    sh.Visible = xlSheetVeryHidden

    End Sub
    '<<=============

    If you are not familiar with macros, you may wish to visit David McRitchie's
    'Getting Started With Macros And User Defined Functions' at:

    http://www.mvps.org/dmcritchie/excel/getstarted.htm


    ---
    Regards,
    Norman



    "kuansheng" <kuansheng@gmail.com> wrote in message
    news:1139906090.042411.102940@g14g2000cwa.googlegroups.com...
    > Hi Guys,
    >
    > I was wondering if it is possible to hide a worksheet from user view.
    > and let the worksheet work behind the scene
    >




  3. #3
    kuansheng
    Guest

    Re: Hide worksheet

    Thanks a million Norman.


+ 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