Open spreadsheet on 'home' page

  • Thread starter Thread starter Beanymonster
  • Start date Start date
B

Beanymonster

Hi all,
I am currently using Excel 2002 and have a workbook with multipl
worksheets. Is it possible to force the workbook to open on the sam
page every time (ie the front page)? Currently, the workbook opens o
whatever page was last viewed when it was closed and saved.
thanks in advance

Bret
 
Put this in the ThisWorkbook module

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

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

Back
Top