#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default scrollbar size

Hello, I have tried to limit my worksheet area to the used rows but my
vertical scrollbar button (the bit which you move) now occupies almost all
the slideable space so I have no control when trying to scroll up or down.
I tried changing the worksheet scrollabel area, deleting rows (which just
keep coming back), changing row height etc.
I just want the scrollbar button to be a reasonable size so that I can move
it up and down with "finesse"

Please, Help me Obi Wan, you're my only hope.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default scrollbar size

Look he

http://www.contextures.com/xlfaqApp.html#unused

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"matty ratafairy" wrote in message
...
| Hello, I have tried to limit my worksheet area to the used rows but my
| vertical scrollbar button (the bit which you move) now occupies almost all
| the slideable space so I have no control when trying to scroll up or down.
| I tried changing the worksheet scrollabel area, deleting rows (which just
| keep coming back), changing row height etc.
| I just want the scrollbar button to be a reasonable size so that I can move
| it up and down with "finesse"
|
| Please, Help me Obi Wan, you're my only hope.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default scrollbar size

If Debra's site does not give you what you want..........and I am sure it
will...........you could actually set the scrollarea by code so's user's cannot
scroll out of that area.

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


Gord Dibben MS Excel MVP


On Fri, 27 Jun 2008 02:50:03 -0700, matty ratafairy
wrote:

Hello, I have tried to limit my worksheet area to the used rows but my
vertical scrollbar button (the bit which you move) now occupies almost all
the slideable space so I have no control when trying to scroll up or down.
I tried changing the worksheet scrollabel area, deleting rows (which just
keep coming back), changing row height etc.
I just want the scrollbar button to be a reasonable size so that I can move
it up and down with "finesse"

Please, Help me Obi Wan, you're my only hope.


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
Scrollbar help [email protected] Excel Discussion (Misc queries) 1 January 19th 07 10:48 PM
Possible to Customize Scrollbar? [email protected] Excel Discussion (Misc queries) 2 January 8th 07 04:23 PM
Formatting scrollbar sdelano Excel Discussion (Misc queries) 2 August 14th 06 09:45 PM
Horizontel scrollbar Richiestr Excel Discussion (Misc queries) 0 April 28th 05 12:40 PM
scrollbar reslut makes another scrollbar to show Patrik Excel Discussion (Misc queries) 0 April 18th 05 03:11 PM


All times are GMT +1. The time now is 04:17 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"