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
 
Back
Top