Hide an active Excel worksheet

How to hide an active Excel worksheet using VBA and Shortcut methods

METHOD 1. Hide an active Excel worksheet using VBA

VBA

Sub Hide_an_Active_Worksheet()
'hide an active worksheet
ActiveSheet.Visible = False

End Sub

ADJUSTABLE PARAMETERS
Worksheet Selection: Select any worksheet in the workbook that you want to hide.

METHOD 2. Hide an active Excel worksheet using VBA

VBA

Sub Hide_an_Active_Worksheet()
'hide an active worksheet
ActiveSheet.Visible = xlSheetHidden

End Sub

ADJUSTABLE PARAMETERS
Worksheet Selection: Select any worksheet in the workbook that you want to hide.

Hide an active worksheet using a Shortcut

SHORTCUT

WINDOWS SHORTCUT

Alt
H
>
O
>
U
>
S

NOTES
The shortcut will hide an active worksheet.

Explanation about how to hide an active worksheet

EXPLANATION

EXPLANATION
This tutorial explains and provides step by step instructions on how to hide an active worksheet using VBA and Shortcut methods.

VBA Methods: Using VBA you can hide an active worksheet.

Shortcut Method: Using a Shortcut you can hide an active worksheet.