How to Make the Worksheet Invisible by VAB Very Hidden in Excel?

We can easily hide worksheet by right click on worksheet and click on Hide selection. It is the simplest way to hide a worksheet in excel, but on the other side, it is unsafe to hide important worksheet by this method as user can unhide the worksheet through Unhide function directly. So, we need a high-level way to hide the worksheet. This article will show you to hide worksheet by VBA xlSheetVeryHidden, and user can only check the worksheet via VBA code.

Hide Worlsheet by VBA xlSheetVeryHidden


Step1: Create two worksheets Sheet1 and Sheet2.

Step2: Click on Developer tab->Visual Basic. You can also click on Alt+F11 to Microsoft Visual Basic for Applications window.

Make the Worksheet Invisible by VAB Very Hidden 1

Microsoft Visual Basic for Applications window:

Make the Worksheet Invisible by VAB Very Hidden 2

Note:

If Project and Properties are not auto loaded after loading Microsoft Visual Basic for Applications, you can click on View->Project Explorer or View->Properties Window to display the Project Explorer and Properties window. See screenshots below.

Make the Worksheet Invisible by VAB Very Hidden 3      Make the Worksheet Invisible by VAB Very Hidden 4

Step3: Select Sheet1 or Sheet2 which you want to hide from Project Explorer->VBAProject (Book1)->Microsoft Excel Objects. In this case we select Sheet2.

Make the Worksheet Invisible by VAB Very Hidden 5

Step4: Then we can find Sheet2 Worksheet is displayed in Properties window.

Make the Worksheet Invisible by VAB Very Hidden 6

Step5: Under Alphabetic, in Visible dropdown list, select the last one ‘2-xlSheetVeryHidden’.

Make the Worksheet Invisible by VAB Very Hidden 7

Step6: Close Microsoft Visual Basic for Applications window, verify that Sheet2 is invisible now.

Make the Worksheet Invisible by VAB Very Hidden 8

Step7: On Sheet1 right click and select Unhide. Verify that Unhide is in disable status. So, user cannot unhide Sheet2 by Unhide now.

Make the Worksheet Invisible by VAB Very Hidden 9

Notes:

Make the Worksheet Invisible by VAB Very Hidden 10

For Visible options:

  1. The default value for Visible is ‘-1 – xlSheetVisible’. That’s because the worksheet is visible in excel.
  2. 0 – xlSheetHiden’ equals to Sheet->Hide, and user can unhide the worksheet through Sheet->Unhide, that means user can unhide worksheet through excel menu.
  3. 2 – xlSheetVeryHidden’ means hide worksheet by high-level, and the invisible worksheet can only be seen by VBA code.
  4. If you want to see Sheet2 again, you can set ‘-1 – xlSheetVisible’ for Sheet2 again through Microsoft Visual Basic for Applications->Properties->Visible.