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
 

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