Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I'm creating a form with excel and would like users to view a specified cell
range. I know how to protect cells. The form is A1-F94 and I would like users to only see that range of cells. |
#2
![]() |
|||
|
|||
![]()
If using VBA you can use the ScrollArea property. As I recall, this setting
is not persistent (i.e., it doesn't save with the workbook) so it needs to be set in the WorkbookOpen event or something similar. -- George Nicholson Remove 'Junk' from return address. "Mike" wrote in message ... I'm creating a form with excel and would like users to view a specified cell range. I know how to protect cells. The form is A1-F94 and I would like users to only see that range of cells. |
#3
![]() |
|||
|
|||
![]()
Mike
Hiding the unused rows and columns then protecting the sheet is one method. Setting the scrollarea using VBA is another method. Note: Setting ScrollArea is good for that session only and only the activesheet. Has to be reset next time workbook is opened. Best to place the code into a WorkBook_Open Sub in ThisWorkbook module and specify which worksheet. Private Sub WorkBook_Open() Sheets("YourSheet").ScrollArea = "A1:F94" End Sub Gord Dibben Excel MVP On Thu, 16 Dec 2004 08:13:02 -0800, "Mike" wrote: I'm creating a form with excel and would like users to view a specified cell range. I know how to protect cells. The form is A1-F94 and I would like users to only see that range of cells. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Grabbing the last Non-empty cell in a range | Excel Discussion (Misc queries) | |||
Why am I unable to link a cell in one worksheet to a cell in anot. | Excel Discussion (Misc queries) | |||
Can I link a cell to reflect a worksheet name? | Excel Discussion (Misc queries) | |||
View and Cell Sum Range | Excel Discussion (Misc queries) | |||
copy paste cell character limit | Excel Discussion (Misc queries) |