Load Sheet2 on Startup??

M

Michael Vaughan

Hello Everyone,

I know I saw this somewhere, but for the life of me, I can't seem to find
it. I think somebody had a reference webpage to this. How do you set it
up, so that Sheet4 is displayed or initialized when I start my excel
program: airplane.xls????

Thanks.. mv
 
F

ForSale

on airplane.xls, hit alt+F11, then go down to the ThisWorkbook page an
paste this:
Private Sub Workbook_Open()
Sheet4.Select
End Su
 
Top