M maxwel New Member Aug 13, 2011 #1 How would I set by default opening my worksheet file which goes directly to main tab where all my dash board are plotted and not on the sub tab?
How would I set by default opening my worksheet file which goes directly to main tab where all my dash board are plotted and not on the sub tab?
Hui Excel Ninja Staff member Aug 14, 2011 #2 Copy the following subroutine to the ThisWorkbook Module in VBA (Alt F11) Change the Sheet name and Starting range to suit [pre] Code: Private Sub Workbook_Open() Sheets("Main").Select Range("D10").Select End Sub [/pre] Save the file as a *.xlsm Every time you open it, it will go directly to Main!D10
Copy the following subroutine to the ThisWorkbook Module in VBA (Alt F11) Change the Sheet name and Starting range to suit [pre] Code: Private Sub Workbook_Open() Sheets("Main").Select Range("D10").Select End Sub [/pre] Save the file as a *.xlsm Every time you open it, it will go directly to Main!D10