Thanks for ther code guys, is the below looking good? my next step is automatically having the macro run without being prompted when workbook is opened. is this possible?
Private Sub Workbook_Open()
Sheets("Team Dash").Visible = True
Sheets("sm1212").Visible = xlSheetVeryHidden
Sheets("rw1212").Visible = xlSheetVeryHidden
Sheets(Environ("Username")).Visible = xlSheetVisible
End Sub
Sub VenA()
For Each sh In Sheets
If sh.Name = Environ("Username") Then
sh.Visible = True
Msgbox sh.Name & " Found and is now visible"
Exit Sub
End If
Next
Msgbox "Sheets " & Environ("Username") & " Not found"
End Sub
Bookmarks