Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I have used the control box toolbar, properties, scroll area to set a range. I can see the range I have typed in the the box. I have a couple of reference books which I use but can see no mention of this. It works while the worksheet is open, but despite saving changes, everytime I go back into the file the scroll area is not set. Where am I going wrong? Thanks Steve |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you need to re-set the scroll area each time by using the workbook_open
event in the ThisWorkbook module. -- Don Guillett SalesAid Software "Steve Jones" wrote in message ... Hi I have used the control box toolbar, properties, scroll area to set a range. I can see the range I have typed in the the box. I have a couple of reference books which I use but can see no mention of this. It works while the worksheet is open, but despite saving changes, everytime I go back into the file the scroll area is not set. Where am I going wrong? Thanks Steve |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It works while the worksheet is open, but despite saving changes, everytime
I go back into the file the scroll area is not set. Yes, think I read from past posts that it's transient (doesn't get saved) .. Try the sub* below, which is to be placed in the "ThisWorkbook" module *adapt to suit Right-click on the Excel icon just to the left of "File" on the menu Choose "View Code" (This will bring you direct into the "ThisWorkbook" module) Copy Paste the sub into the code window on the right (clear the defaults there first) '---- Private Sub Workbook_Open() Worksheets("Sheet1").ScrollArea = "A1:B100" End Sub '--- -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Steve Jones" wrote: Hi I have used the control box toolbar, properties, scroll area to set a range. I can see the range I have typed in the the box. I have a couple of reference books which I use but can see no mention of this. It works while the worksheet is open, but despite saving changes, everytime I go back into the file the scroll area is not set. Where am I going wrong? Thanks Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Scroll Area _Named Range in worksheet | Excel Discussion (Misc queries) | |||
Scroll Area | Excel Discussion (Misc queries) | |||
Restrict Scroll Area | Excel Discussion (Misc queries) | |||
Worksheet scroll area | Excel Discussion (Misc queries) | |||
Worksheet Scroll Area | Excel Discussion (Misc queries) |