Restrict Movment on a sheet

Te4t0n

New Member
Joined
Jan 23, 2005
Messages
21
Hi, I would likw to know if you can restrict movment on sheets in excel, i mean by this like restrict horizontial and vertical bar movment ? if so how would i go about it i have looked or hours in the help files and on the internet.. but i find nothing so far.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Perhaps you could clarify your request somewhat and give us some examples of what would and wouldn't be acceptable.

Can they scroll at all - if so how far etc
 
Upvote 0
The scroll bars are hidden and i dont want them to move up or down, left or right at all, i set the screen to display all i want them to see. problem is the middle mouse wheel can scroll up and down, the most right cell and most bottom row u can see on the screen is column r and row 44, i wish them not to go past these.
 
Upvote 0
Hi

If your using Excel 2003 you could set the Permissions property to only allow the user to select unlocked cells.

I'd allows hide all othe columns and rows so that even if they scroll with the mouse button they don't actually go anywhere. It will just show grey space.

HTH
 
Upvote 0
isn't there any like on scroll events or workbook event for change ? so i know if the scroll right-left or up-down is changing ?
 
Upvote 0
You could try

Code:
Worksheets("Sheet1").Activate
ActiveWindow.LargeScroll down:=3

And set the = 0

Not tested but...
 
Upvote 0
In the ThisWorkbook module

Private Sub Workbook_Open()
Sheet1.ScrollArea = "$A$1:$R$44"
End Sub

Note that they will have the option of enabling/disabling macros at the start which will enable/disable this option unless you cater for that some other way.

Obviously change the sheet name for the right one
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,558
Members
449,038
Latest member
Guest1337

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top