Hyperlink to hidden worksheet

J

JoeleneW

I have a spreadsheet with many tabs, and am trying to keep things simple for
the end users.
Is there a way to hyperlink to or create a button w/macro that goes to a
hidden worksheet?
 
J

Jim Cone

A hyperlink will not work on a hidden sheet.
This code attached to a button shows the sheet "Salaries"...
'--
Sub LetsSeeIt()
Worksheets("Salaries").Visible = True
End Sub
'--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"JoeleneW" <[email protected]>
wrote in message...
I have a spreadsheet with many tabs, and am trying to keep things simple for
the end users.
Is there a way to hyperlink to or create a button w/macro that goes to a
hidden worksheet?
 

Ask a Question

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.

Ask a Question

Top