Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ive develop an Excel worksheet for data collection. The worksheet contains
info in cells A1 to M192. I want users only to utilize these cells and not have the ability to scroll to blank worksheet area. Is there a way to prevent user from strolling pass a particular column and row? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Paul
Place the sub below in the ThisWorkbook module. Private Sub Workbook_Open() Sheets("Sheet1").scrollarea = "A1:M192" End Sub -- XL2002 Regards William "Paul" wrote in message ... | I've develop an Excel worksheet for data collection. The worksheet contains | info in cells A1 to M192. I want users only to utilize these cells and not | have the ability to scroll to blank worksheet area. Is there a way to | prevent user from strolling pass a particular column and row? | | Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
sheets("Sheet1").scrollarea = "$A$1:$M$192"
HTH "Paul" wrote: Ive develop an Excel worksheet for data collection. The worksheet contains info in cells A1 to M192. I want users only to utilize these cells and not have the ability to scroll to blank worksheet area. Is there a way to prevent user from strolling pass a particular column and row? Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you know that your users will not need any additional rows or columns, the
Worksheet.ScrollArea would do you fine. But what if you require later to expand the area available to your users? I for one have not found the solution, yet, to dynamically restrict the ScrollArea to the user. "Paul" wrote: Ive develop an Excel worksheet for data collection. The worksheet contains info in cells A1 to M192. I want users only to utilize these cells and not have the ability to scroll to blank worksheet area. Is there a way to prevent user from strolling pass a particular column and row? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pass Cell Address to OFFSET | Excel Worksheet Functions | |||
How to change color of cell as dates pass | Excel Worksheet Functions | |||
How to pass values of a cell? | Excel Discussion (Misc queries) | |||
How to pass value in cell between workbooks ? | Excel Programming | |||
How to pass valve in combobox object to cell | Excel Programming |