You can write a little macro to do that and assign a key stroke combination
to that macro. Of course, the macro will have to know the name of the sheet
you want to unhide and once you put that name in the macro, that macro will
unhide that sheet only. Something like:
Sub HideTwo()
Sheets("Two").Visible = True
End Sub
Note that this macro unhides a sheet named "Two". HTH Otto
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.