Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have two worksheets in a workbook that won't scroll with the scroll wheel.
How do I make the rest of the work sheets in the same workbook do the same thing? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Do the other sheet haver Freeze Panes set?
-- www.stfx.ca/people/bliengme "rcomer123" wrote: I have two worksheets in a workbook that won't scroll with the scroll wheel. How do I make the rest of the work sheets in the same workbook do the same thing? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Yes. The same as the frozen sheets.
"Bernard Liengme" wrote: Do the other sheet haver Freeze Panes set? -- www.stfx.ca/people/bliengme "rcomer123" wrote: I have two worksheets in a workbook that won't scroll with the scroll wheel. How do I make the rest of the work sheets in the same workbook do the same thing? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
WindowFreeze Panes.
Play with setting the selected cell at various points. Perhaps the worksheets that won't scroll have their scrollarea set by code. Since the scrollarea method does not stick between sessions you will have to reset it each time you open the workbook. You may wish to place the code into a WorkBook_Open Sub in ThisWorkbook module and specify which worksheet if only one sheet required. Adjust the sheetname and range to suit. Private Sub WorkBook_Open() Sheets("YourSheet").ScrollArea = "A1:M56" End Sub Or also in the Thisworkbook module to limit scrollarea on all sheets. Private Sub Workbook_SheetActivate(ByVal Sh As Object) With ActiveSheet .ScrollArea = "A1:M56" End With End Sub Gord Dibben MS Excel MVP On Thu, 17 Apr 2008 16:38:00 -0700, rcomer123 wrote: I have two worksheets in a workbook that won't scroll with the scroll wheel. How do I make the rest of the work sheets in the same workbook do the same thing? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I unfreezed the panes and re-freezed them and now I can scroll on those two
workseets now. Now all I need to figure out is how to make them not scroll. "Gord Dibben" wrote: WindowFreeze Panes. Play with setting the selected cell at various points. Perhaps the worksheets that won't scroll have their scrollarea set by code. Since the scrollarea method does not stick between sessions you will have to reset it each time you open the workbook. You may wish to place the code into a WorkBook_Open Sub in ThisWorkbook module and specify which worksheet if only one sheet required. Adjust the sheetname and range to suit. Private Sub WorkBook_Open() Sheets("YourSheet").ScrollArea = "A1:M56" End Sub Or also in the Thisworkbook module to limit scrollarea on all sheets. Private Sub Workbook_SheetActivate(ByVal Sh As Object) With ActiveSheet .ScrollArea = "A1:M56" End With End Sub Gord Dibben MS Excel MVP On Thu, 17 Apr 2008 16:38:00 -0700, rcomer123 wrote: I have two worksheets in a workbook that won't scroll with the scroll wheel. How do I make the rest of the work sheets in the same workbook do the same thing? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Stop scrolling on 1 worksheet | Excel Discussion (Misc queries) | |||
How do I stop from automatically scrolling to the right? | Excel Discussion (Misc queries) | |||
How do I stop the scrolling? | New Users to Excel | |||
Stop scrolling | Excel Discussion (Misc queries) | |||
scrolling won't stop | Excel Worksheet Functions |