Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How do I stop a worksheet from scrolling?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 563
Default How do I stop a worksheet from scrolling?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How do I stop a worksheet from scrolling?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default How do I stop a worksheet from scrolling?

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How do I stop a worksheet from scrolling?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Stop scrolling on 1 worksheet Ollie Excel Discussion (Misc queries) 6 January 1st 08 02:58 AM
How do I stop from automatically scrolling to the right? Tom Excel Discussion (Misc queries) 4 August 14th 07 06:14 PM
How do I stop the scrolling? lady digitalvideo New Users to Excel 2 August 8th 06 04:08 AM
Stop scrolling gottahavit Excel Discussion (Misc queries) 1 November 8th 05 03:30 PM
scrolling won't stop orfan Excel Worksheet Functions 1 February 17th 05 07:35 PM


All times are GMT +1. The time now is 10:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"