How to make Excel worksheet very hidden

Опубликовано: 18 Май 2026
на канале: Excel and VBA Hindi Tutorial
153
6

In Excel, there are two levels of visibility for worksheets: "hidden" and "very hidden." A "very hidden" worksheet is not visible in the Excel interface, and it cannot be unhidden using the typical methods. You can use VBA (Visual Basic for Applications) code to make a worksheet very hidden. Here's how you can do it:

Open your Excel workbook.

Press ALT + F11 to open the Visual Basic for Applications (VBA) editor.

In the Project Explorer window on the left, find and select the worksheet you want to make very hidden. It will be listed under the name of the workbook.

Go to the Properties window (if it's not already visible, press F4 to show it).

Locate the "Visible" property in the Properties window and change its value from "xlSheetVisible" to "xlSheetVeryHidden".