Elvin has attended:
Excel VBA Intro Intermediate course
Stop Scrolling
Hi
I need to prevent users from scrolling in each worksheet of the workbook. I have tried teh followign but it does not work. Are you able to hep ?
Private Sub Worksheet_Activate()
Worksheets(1).ScrollArea = "a1:m34"
End Sub
Thanks
Elvin
RE: Stop Scrolling
Hi Elvin
Your example does work but you have to activate Sheet1 first. Try clicking into Sheet2 then back into Sheet1.
Another place to add the code to is ThisWorkbook
(Double click ThisWorkbook, change from General to Workbook, Open)
Private Sub Workbook_Open()
Worksheets(1).ScrollArea = "a1:m34"
End Sub
Remember to save as a macro enabled workbook when finished or a 97-2003 format.
hope that helps
Cheers
Doug
Best STL