I just want to be able to group tabs. Like, when you hide columns, you can have that (+) that opens them...that's what I want for tabs.
First - each worksheet must have a unique name. So name them John1, John2, etc, but hide the sheet tabs if you don't want to see the tab names.
If you want to show only all of John or Mary's worksheets, while hiding all sheets not in their group, you can achieve this using a drop down data validation list of names and using a bit of VBA to show related sheets while hiding others. See attached. This is as close as it gets.
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim ws As Worksheet, strName As String
Application.ScreenUpdating = False
If Not Intersect(Target, Range("B2")) Is Nothing Then
strName = Target.Value
On Error Resume Next
For Each ws In Worksheets
If ws.Name Like strName & "*" Or ws.Name Like "Sheet1" Then
ws.Visible = xlSheetVisible
Else
ws.Visible = xlSheetHidden
End If
Next ws
End If
Application.ScreenUpdating = True
End Sub
Bookmarks