Hello again... man this VBA stuff is killing me! LOL! I have figured out (with the help of Hui) how to unhide a worksheet and have it open automatically. The issue I am having now is that I have added a Command Button (Also with the help of Hui) to close the worksheet and it works great. I just can't figure out how to add the VBA to auto save the work sheet and uncheck the box on sheet 1 when the worksheet is rehidden.
This is what I have for my Command Buttons:
[pre]
[/pre]
Any help would be greatly appreciated!
This is what I have for my Command Buttons:
[pre]
Code:
Private Sub CommandButton2_Click()
Worksheets("Room 102").Visible = False
End Sub
(I would love to add the Auto Save here if possible as well as auto uncheck the box when the sheet is hidden again)
This is what I have for unhiding the worksheets:
Sub CheckBox29_Click()
If Sheet1.DrawingObjects("Check box 29").Value > 0 Then
Worksheets("Room 101").Visible = True
Worksheets("Room 101").Select
Else
Worksheets("Room 101").Visible = False
End If
End Sub
Any help would be greatly appreciated!