Open file to a "default" worksheet

  • Thread starter Thread starter Larry S
  • Start date Start date
L

Larry S

I have a workbook with several worksheets (Example: Summary, Data 1, Data 2,
Data 3, etc.). While the file may have been saved at any time after
referencing any of the worksheets, I need to ensure that whoever the next
user is, the file opens to a specific worksheet (Summary) as I want them to
always see this sheet first. Any suggestions on how to make this work?

Thanks for your help.
 
Thanks - we will try this.

Don Guillett said:
right click the excel icon just to the left of file on the menu
toolbar>view code> in the left window select workbook> in the right window
select beforeclose or beforesave or workbook open and use

sheets("summary").select
range("a1").select

or
application.goto sheets("summary").range("a1")
 

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