hides all sheets except those standing in

KlausW

Active Member
Joined
Sep 9, 2020
Messages
445
Office Version
  1. 2016
Platform
  1. Windows
Hi everyone

I would like to use this VBA-code so that it hides all sheets except those standing in

VBA Code:
ws.Names = Array("Højde", "VPL", "Fast besætning", "Adresseliste Fast og VPL", "Adresseliste")

But it doesn’t do it, someone who can help.

All help will be appreciated.

Best Regards

Klaus W.

VBA Code:
Sub Hide()

 Dim ws As Worksheet
 
 ws.Names = Array("Højde", "VPL", "Fast besætning", "Adresseliste Fast og VPL", "Adresseliste")
 
 For Each ws In ws.Names
 
 If ws.Name <> ws.Names Then
 
wsNames.Visible = xlSheetHidden

Next ws
 End If

 End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
VBA Code:
for each sh in sheets
    if sh.name <> activesheet.name then sh.visible = false
next
 
Upvote 0
Try it this way:
VBA Code:
Sub Hide()
    Dim ws As Worksheet
    
    For Each ws In ThisWorkbook.Worksheets
        Select Case ws.Name
            Case "Højde", "VPL", "Fast besætning", "Adresseliste Fast og VPL", "Adresseliste"
                ws.Visible = xlSheetVisible
            Case Else
                ws.Visible = xlSheetHidden
        End Select
    Next ws
End Sub
 
Upvote 0
Solution
Try it this way:
VBA Code:
Sub Hide()
    Dim ws As Worksheet
   
    For Each ws In ThisWorkbook.Worksheets
        Select Case ws.Name
            Case "Højde", "VPL", "Fast besætning", "Adresseliste Fast og VPL", "Adresseliste"
                ws.Visible = xlSheetVisible
            Case Else
                ws.Visible = xlSheetHidden
        End Select
    Next ws
End Sub
thanks just as it should be have a nice day Best regards from Denmark KW
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top