Worksheet.Visible Property
Returns or sets an XlSheetVisibility value that determines whether the object is visible.
Syntax
expression.Visible
expression A variable that represents a Worksheet object.
Example
This example hides Sheet1.
| Visual Basic for Applications |
|---|
|
This example makes Sheet1 visible.
| Visual Basic for Applications |
|---|
|
This example makes every sheet in the active workbook visible.
| Visual Basic for Applications |
|---|
|
This example creates a new worksheet and then sets its Visible property to xlVeryHidden. To refer to the sheet, use its object variable, newSheet, as shown in the last line of the example. To use the newSheet object variable in another procedure, you must declare it as a public variable (Public newSheet As Object) in the first line of the module preceding any Sub or Function procedure.
| Visual Basic for Applications |
|---|
|