Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have created a worksheet to be shared by 4 other people but I want to limit
these users to be able to scroll the worksheet not beyond cell M60. How can I do that???an anybody help. Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't believe it is possible to limit scrolling in Excel. However, what if
you Hide all rows after 60, and all columns after M? Users would still be able to scroll beyond these limits, however they would not be able to see the contents of these hidden areas. HTH, Elkar "alexc" wrote: I have created a worksheet to be shared by 4 other people but I want to limit these users to be able to scroll the worksheet not beyond cell M60. How can I do that???an anybody help. Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can change the scrollarea in code:
If you want to try, ... Option Explicit Sub auto_open() With Worksheets("sheet1") .ScrollArea = .Range("a1:M60").Address End With End Sub Excel won't remember these settings after you close it and reopen the workbook (that's why it's in auto_open). If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm alexc wrote: I have created a worksheet to be shared by 4 other people but I want to limit these users to be able to scroll the worksheet not beyond cell M60. How can I do that???an anybody help. Thank you -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vertical scrolling...jumps rather than smooth scrolling | Excel Discussion (Misc queries) | |||
Live Scrolling/Real-Time /Smooth Scrolling doesn't work for me in Excel, even 2007 beta | Excel Discussion (Misc queries) | |||
Live Scrolling/Real-Time /Smooth Scrolling doesn't work for me in Excel 2003 | Excel Discussion (Misc queries) | |||
scrolling | Excel Discussion (Misc queries) | |||
scrolling - help | Excel Discussion (Misc queries) |