ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Open Worksheet, Limit Users to Number of Rows & Columns (https://www.excelbanter.com/excel-programming/408504-open-worksheet-limit-users-number-rows-columns.html)

LRay67

Open Worksheet, Limit Users to Number of Rows & Columns
 
Is there a way to limit a user to a specific # of Rows & Columns upon opening
the workbook/worksheet?

Linda

Gord Dibben

Open Worksheet, Limit Users to Number of Rows & Columns
 
You can set the scrollarea to a fixed range.

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


Gord Dibben MS Excel MVP

On Fri, 28 Mar 2008 12:06:01 -0700, LRay67
wrote:

Is there a way to limit a user to a specific # of Rows & Columns upon opening
the workbook/worksheet?

Linda



LRay67

Open Worksheet, Limit Users to Number of Rows & Columns
 
Thank You the 2nd scenario worked for us.

Linda

"Gord Dibben" wrote:

You can set the scrollarea to a fixed range.

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


Gord Dibben MS Excel MVP

On Fri, 28 Mar 2008 12:06:01 -0700, LRay67
wrote:

Is there a way to limit a user to a specific # of Rows & Columns upon opening
the workbook/worksheet?

Linda





All times are GMT +1. The time now is 09:29 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com