Auto open a spreadsheet

J

John

I have a worksheet with a main page with hyperlinks to 12
other pages within the workbook, I need the menu page to
open by default when you open the spreadsheet.
 
M

mudraker

You would need a macro that runs when you open the workbook


there are 2 methods to acheive this


place this code on ThisWorkbook module - changing sheetname

Private Sub Workbook_Open()
Sheets("YourMasterSheetNameHere").Activate
Range("a1").Select
End Sub


or

Place this code on a normal module sheet - changing sheetname

Sub Auto_Open()
Sheets("YourMasterSheetNameHere").Activate
Range("a1").Select
End Su
 

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