Startup defaul sheet in a workbook

G

GeoN

Does anyone know how to make a workbook open in the same
or default sheet every time is opened?

I have a workbook with 15 sheets. How can I make excel to
open it in the first sheet everytime I open this
workbook?....

Excel always remembers the last active sheet that the
workbook had open at the time it was save and close..

Anybody has any suggestions?

Thank you in advance
 
P

Paul B

GeoN, you could use a macro to do it, like this, put in thisworkbook code

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

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 97 & 2000
** remove news from my email address to reply by email **
 

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