Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default How do I set the scroll area in excel2 007


  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 83
Default How do I set the scroll area in excel2 007

"PeterBelgie" wrote in message
...
nothing


Please write you question in the BIG WHITE SPACE.
Thank you.

What do you mean exactly by "the scroll area"?


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,489
Default How do I set the scroll area in excel2 007

Hi,

The same way as in xl2003.
If you used the Properties window as displayed on the Controls Toolbox
toolbar you will need to have the Developers tab displayed.

Office button Excel Options Popular Show developer tab in Ribbon

Cheers
Andy

--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
"PeterBelgie" wrote in message
...


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default How do I set the scroll area in excel2 007

Adding to Andy's reply................

You could set the scrolling area through VBA

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:F27"
End Sub

Or this in the Thisworkbook module to limit scrollarea on all sheets.

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
With ActiveSheet
.ScrollArea = "A1:F27"
End With
End Sub


Gord Dibben MS Excel MVP

On Fri, 17 Oct 2008 01:53:01 -0700, PeterBelgie
wrote:


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
Restricting Scroll Area Steve Jones Excel Discussion (Misc queries) 2 June 21st 06 01:19 PM
Scroll Area Paul Dusterhoft Excel Discussion (Misc queries) 8 September 21st 05 11:36 AM
Restrict Scroll Area anuradha Excel Discussion (Misc queries) 0 July 20th 05 07:37 AM
Worksheet scroll area Steve Jones Excel Discussion (Misc queries) 3 April 22nd 05 12:07 PM
Worksheet Scroll Area Steve Jones Excel Discussion (Misc queries) 3 January 19th 05 04:21 AM


All times are GMT +1. The time now is 02:54 PM.

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

About Us

"It's about Microsoft Excel"