Making a workbook always open on the same worksheet?

  • Thread starter Thread starter Mat 66
  • Start date Start date
M

Mat 66

Does anyone know how you can force a workbook to always open on
certain sheet? i.e. a contents style sheet.

Cheers All
 
Hi
put the following code in your workbook module (not in a
standard module):
sub workbook_open()
me.worksheets("content_sheet").activate
end sub
 
Save the workbook with that particular sheet visible.
Toby Erkson
Oregon, USA
 

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