splash screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Would someone kindly advise code I need to write in macro so that when I open
Excel it opens with a particular worksheet (Main menu) I assume I would also
name macro "Autoexec" ??

Thanks

Steve King
 
Create a short cut to the file
In Windows Explorer, right click on the file and select <Create Shortcut>
Drag the shortcut file to Documents and Settings\(User name)\Start
Menu\Programs\Startup

This will open Excel and that file on booting up the computer.

Regards.

Bill Ridgeway
Computer Solutions
 
Hi,

Things have move on since autoexec.bat!!

In Excel you use the worksheet_open event. Alt+F11 then double click
workbook and paste this in.

Private Sub Workbook_Open()
Worksheets("Menu").Select
End Sub

Mike
 
Back
Top