Direct to specify worksheet when open a file?

P

Param

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
 
F

Frank Kabel

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
 
Top