Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Always open to specified sheet in Excel

Status
Not open for further replies.

aprunkard

Technical User
Oct 29, 2004
52
US
I know I have done this before but I have lost the sheet with the code in it...
I want my workbook to always open to "Start Here" sheet. I know it's simple.

Thanks!!
 
Hi aprunkard,

You can code for this in the workbook open event. In the ThisWorkbook code module, add ..

Code:
Private Sub Workbook_Open()
    Sheets("Start Here").Activate
End Sub


Enjoy,
Tony

--------------------------------------------------------------------------------------------
We want to help you; help us to do it by reading this: Before you ask a question.
Excel VBA Training and more Help at [url=http://www.vbaexpress.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top