I have a table called "HideSheets" (single column) to which sheets get added or sometimes removed. How do I reference the table in
Sub HideSheets()
Dim cell As Range
On Error Resume Next
For Each cell In Sheets("Index").Range("HideSheets")
' Hide sheets
Sheets(cell.Value).Visible = False
End Sub