Hi Guys
I have a work book with about 70 hidden sheets in it and there is 1 maintenance sheet, that I need to update from time to time
What I want to be able to do is when I open this workbook it chacks for me "martin.lucas" and if that is true it unhides and opens "Sheet 2"
I'm guessing the code has to go in "This Workbook"
and the code starts
other than that I'm stumped
I have a work book with about 70 hidden sheets in it and there is 1 maintenance sheet, that I need to update from time to time
What I want to be able to do is when I open this workbook it chacks for me "martin.lucas" and if that is true it unhides and opens "Sheet 2"
I'm guessing the code has to go in "This Workbook"
and the code starts
Code:
Private Sub Workbook_Open()
.....What goes here....
Sheets("Maintenance").Visible = True
Sheets("Maintenance").Select
End Sub
other than that I'm stumped