ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   limit size of worksheet (https://www.excelbanter.com/excel-discussion-misc-queries/18885-limit-size-worksheet.html)

abfabrob

limit size of worksheet
 
I have created a doc in excel, but I don't want users to be able to scroll
down through the hundereds of empty cells below my two pages. Or scroll right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this scrolling?

Rob



-----Original Message-----
I have created a doc in excel, but I don't want users to

be able to scroll
down through the hundereds of empty cells below my two

pages. Or scroll right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this

scrolling?

Rob
.

You can use code Worksheets(name of sheet).ScrollArea =
"a1:h60"

Try this code Worksheets(name of sheet).ScrollArea = ""

Spider


"abfabrob" wrote in message
...
I have created a doc in excel, but I don't want users to be able to scroll
down through the hundereds of empty cells below my two pages. Or scroll
right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this scrolling?

Rob


All you have to do is select the colums you want hidden and then select
format - colum - and hide ... then repeat for rows.. if you accidently
mess it up you can undo also. If you wish you can further protect it by
selecting cells to be protected then format - cells ..protection tab, tick
both boxes then return to Tools - protection - protect sheet...select each
option and then choose a password.



abfabrob

Cheers!

" wrote:


-----Original Message-----
I have created a doc in excel, but I don't want users to

be able to scroll
down through the hundereds of empty cells below my two

pages. Or scroll right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this

scrolling?

Rob
.

You can use code Worksheets(name of sheet).ScrollArea =
"a1:h60"

Try this code Worksheets(name of sheet).ScrollArea = ""


abfabrob

Thank you!

"Spider" wrote:


"abfabrob" wrote in message
...
I have created a doc in excel, but I don't want users to be able to scroll
down through the hundereds of empty cells below my two pages. Or scroll
right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this scrolling?

Rob


All you have to do is select the colums you want hidden and then select
format - colum - and hide ... then repeat for rows.. if you accidently
mess it up you can undo also. If you wish you can further protect it by
selecting cells to be protected then format - cells ..protection tab, tick
both boxes then return to Tools - protection - protect sheet...select each
option and then choose a password.




Gord Dibben

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


Gord Dibben Excel MVP

On Wed, 23 Mar 2005 06:41:05 -0800, "abfabrob"
wrote:

Cheers!

" wrote:


-----Original Message-----
I have created a doc in excel, but I don't want users to

be able to scroll
down through the hundereds of empty cells below my two

pages. Or scroll right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this

scrolling?

Rob
.

You can use code Worksheets(name of sheet).ScrollArea =
"a1:h60"

Try this code Worksheets(name of sheet).ScrollArea = ""



Amd

limit size of worksheet
 
Thanks a lot for Gord Dibben for his explanation, it is very useful.

"Gord Dibben" wrote:

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


Gord Dibben Excel MVP

On Wed, 23 Mar 2005 06:41:05 -0800, "abfabrob"
wrote:

Cheers!

" wrote:


-----Original Message-----
I have created a doc in excel, but I don't want users to
be able to scroll
down through the hundereds of empty cells below my two
pages. Or scroll right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this
scrolling?

Rob
.

You can use code Worksheets(name of sheet).ScrollArea =
"a1:h60"

Try this code Worksheets(name of sheet).ScrollArea = ""




ali

limit size of worksheet
 
Have a look at Anne's post he

http://www.microsoft.com/office/comm...d-0794b5bc2a32

"abfabrob" wrote:

I have created a doc in excel, but I don't want users to be able to scroll
down through the hundereds of empty cells below my two pages. Or scroll right
across the hundreds of empty cells.

Can I restrict the size of a work shhet to prevent this scrolling?

Rob



All times are GMT +1. The time now is 07:13 AM.

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