Direct to specify worksheet when open a file?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Any idea how to direct to a specify worksheet when open a file.
Example I have 5 sheets on workbook1. When open the file it show sheet no.3 first.
Thanks
 
Hi
you have to use VBA for this. e.g. put the following code in your
workbook module (not in an standard module):
sub workbook_open()
me.worksheets("sheet3").activate
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