Schodoodles
New Member
- Joined
- Jan 25, 2005
- Messages
- 17
Hi,
Is there anyway to set a start sheet when you open up excel?
I've checked the boards but not much seems to be working for me
The code I've been trying to use is this on a worksheet called 'Intro Sheet' that has a few menus.
If I pop this in the workbook area - will the scroll lock code I have put on the sheet's own VB code list still work; it looks like this;
Thanks!!
Scho
Is there anyway to set a start sheet when you open up excel?
I've checked the boards but not much seems to be working for me
The code I've been trying to use is this on a worksheet called 'Intro Sheet' that has a few menus.
Code:
Private Sub Workbook_Open()
Application.Goto ("Intro Sheet")
End Sub
If I pop this in the workbook area - will the scroll lock code I have put on the sheet's own VB code list still work; it looks like this;
Code:
Private Sub Worksheet_Activate()
Worksheets("Intro Sheet").ScrollArea = "A1:A20"
End Sub
Thanks!!
Scho