If you want to hide or unhide specific sheets in a workbook.
Here is the code-
Sub hide_specific_worksheets()
'it will hide all sheets which will be added to Array("Sheet1", "Sheet2") list
Dim abc()
Dim wk As Worksheet
Dim i As Integer
abc = Array("Sheet1", "Sheet2")
For i = LBound(abc) To UBound(abc)
For Each wk In ThisWorkbook.Sheets
If wk.Name = abc(i) Then
wk.Visible = xlSheetVeryHidden
Exit For
End If
Next wk
Next i
End Sub
Sub unhide_specific_worksheets()
'it will unhide all sheets which will be added to Array("Sheet1", "Sheet2") list
Dim abc()
Dim wk As Worksheet
Dim i As Integer
abc = Array("Sheet1", "Sheet2")
For i = LBound(abc) To UBound(abc)
For Each wk In ThisWorkbook.Sheets
If wk.Name = abc(i) Then
wk.Visible = xlSheetVisible
Exit For
End If
Next wk
Next i
End Sub
Subscribe to:
Post Comments (Atom)
Import data from SQL
Macro to import data from SQL using ADO connection string: Sub Import_data_from_SQL() ' Tools -> References -> Microsoft Active...
-
If you want to add a new menu on mouse right click "Workbook Navigation showing you the list of all open workbooks and worksheets in ea...
-
Macro to Export Range in Json Format Option Explicit Sub export_in_json_format() Dim fs As Object Dim jsonfile Dim rangetoex...
Very nice use of array and code works well. Nice if you have specific sheets to hide/unhide. Thank you!
ReplyDelete@Doug Thanks
ReplyDelete