do you want the data on the sheet to be displayed on a button click or the entire sheet to be made unhidden on a button click? I have had similar questions and was helped along the way with those solutions.
create a button and then in the VB code insert this to make the tab unhide.
Private Sub CommandButton1_Click()
'Unhides and take you to that tab/sheet'
Sheets("January 09").Visible = True
Application.Goto Reference:=Sheets("January 09").Range("A1"), Scroll:=True
End Sub
if you want to hide the other sheets once you are in this one, then add the following code after the "Application.Goto" function
Sheets("Februray 09").Visible = False
you can add as many of those as you want, all you have to so is change the name of the month and yr.
hope that helps and was what you were asking for.
James
Bookmarks