Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everybody,
Very hot weather here in UK although having just put the washing out to dry, the weather turns to rain! Anyway, I have a workbook with several 'sheets', is it possible to force Excel to start in a particular sheet that I have names Instructions? I checked Google but got nowheere. Thanks, Mickey |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Mickey
Sure. Paste in the ThisWorkbook module: Private Sub Workbook_Open() Sheets(1).Activate ActiveWindow.ScrollColumn = 1 ActiveWindow.ScrollRow = 1 Range("C3").Select End Sub Sorry to hear about the laundry ;-) -- HTH. Best wishes Harald Excel MVP Followup to newsgroup only please. "mickeyblake" wrote in message ... Hi everybody, Very hot weather here in UK although having just put the washing out to dry, the weather turns to rain! Anyway, I have a workbook with several 'sheets', is it possible to force Excel to start in a particular sheet that I have names Instructions? I checked Google but got nowheere. Thanks, Mickey |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Mickey,
In your workbook, open the VB Editor and go to: 'This Workbook', put in this code: Private Sub Workbook_Open() Sheets("Sheet1").Activate End Sub Obviously change "Sheet1" to the sheet that you wish to activate on opening. regards, Kerry Bennett www.excelaid.com "mickeyblake" wrote in message ... Hi everybody, Very hot weather here in UK although having just put the washing out to dry, the weather turns to rain! Anyway, I have a workbook with several 'sheets', is it possible to force Excel to start in a particular sheet that I have names Instructions? I checked Google but got nowheere. Thanks, Mickey |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Guys!
The rain has stopped and I am hoping the washing dries befor Judie wakes up (poor lady was working nights) I really appreciate the fast response and expert advice, Thanks, Mickey |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Mickey
Glad it helped. Just email me the clothes, Oslo is like an oven today. I really should log off and get outside. Best wishes Harald Excel MVP "mickeyblake" wrote in message ... Thanks Guys! The rain has stopped and I am hoping the washing dries befor Judie wakes up (poor lady was working nights) I really appreciate the fast response and expert advice, Thanks, Mickey |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to start Excel on a specific Worksheet. | Excel Discussion (Misc queries) | |||
Worksheet that appears on start of Excel | Excel Discussion (Misc queries) | |||
How do I make a worksheet my start page? | Excel Worksheet Functions | |||
How dio you flip a worksheet that the columns start on the right | Excel Discussion (Misc queries) | |||
How dio you flip a worksheet that the columns start on the right | Excel Discussion (Misc queries) |