Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do i restrict my worksheet to 20 rows & 20 columns.
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sat, 13 Feb 2010 01:20:01 -0800, xxx
wrote: How do i restrict my worksheet to 20 rows & 20 columns. Hide the rows and columns that you don't want to see. Hope this helps / Lars-Åke |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hide those you don't want to look at.
Or set the scrollarea via 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:T20" 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:T20" End With End Sub Gord Dibben MS Excel MVP On Sat, 13 Feb 2010 01:20:01 -0800, xxx wrote: How do i restrict my worksheet to 20 rows & 20 columns. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Restrict add rows and columns | Excel Discussion (Misc queries) | |||
How do I restrict data entry to one of two columns but not both? | Excel Discussion (Misc queries) | |||
How do I restrict data entry to one of two columns | Excel Discussion (Misc queries) | |||
restrict columns that have auto filter | Excel Discussion (Misc queries) | |||
can i restrict data entry from certain columns | Excel Discussion (Misc queries) |