Pick a cell to go to a sheet in the workbook (greeting page)

  • Thread starter Thread starter tom n.
  • Start date Start date
T

tom n.

I have a workbook that has 10 different order sheets in it and want to make a
welcome page that customers can just pick the order type they need on the
greeting page and it takes them to the order sheet they picked.
 
Why not include a hyperlink to the page of interest. Under Insert ->
Hyperlink you can link to cells within worksheets or to a named range.
 
Hi,

Additional to Barb's answer you might want to include this in the
workbook_open module to ensure your menu sheet is displayed each time the
workbook is opened. However, this does require the users to enable macros.


Private Sub Workbook_Open()
Sheets("Menu").Select
End Sub


Mike
 
thank you worked fine. one more thing is their a way to hide all the sheets
and just keep the greeting page plus remove the save option?
 
got thank you works fine

Mike H said:
Hi,

Additional to Barb's answer you might want to include this in the
workbook_open module to ensure your menu sheet is displayed each time the
workbook is opened. However, this does require the users to enable macros.


Private Sub Workbook_Open()
Sheets("Menu").Select
End Sub


Mike
 

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

Back
Top