I need to be able to hide all sheets apart from the ones in the array. I have written the code for the array but am now stuck for the rest.
Sub ShowHideWorksheets()
arr = Array("Readme", "Compliance cert", "Cash Balances", "Occupancy Report", "ALPH", "BC", "Bish",
"GC", "HS", "STB", "WOL", "GroupCo", "OpCos", "RCG_ALL")
For Each Value In arr
Next Value
End Sub
Any help will be appreciated.