In the example illustrated here, you want the workbook to go immediately to the sheet called Start Here.
Open the workbook to the Start Here sheet.
How the macro works
This macro uses the workbook's Open event to start the workbook on the specified sheet when the workbook is opened:Private Sub Workbook_Open() 'Step 1: Select the specified sheet Sheets("Start Here").Select End SubThe macro explicitly names the sheet the workbook should jump to when it's opened.
How to use the macro
To implement this macro, you need to copy and paste it into the Workbook_Open event code window. Placing the macro here allows it to run each time the workbook is opened:-
Activate Visual Basic Editor by pressing Alt+F11.
-
In the project window, find your project/workbook name and click the plus sign next to it to see all the sheets.
-
Click ThisWorkbook.
-
In the Event drop-down list, select the Open event.
-
Type or paste the code in the newly created module, changing the sheet name, if necessary.
Enter your code in the Workbook Open event.