Starting Excel

  • Thread starter Thread starter Gerrym
  • Start date Start date
G

Gerrym

How can make sure that a workbook with multiple sheets
always starts on a specific sheet.
 
Hi
put the following type of code into your workbook module ('Thisworkbook'):

sub workbook_open()
me.worksheets("sheet1").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