It's visual basic code so to enter it right-click on any sheet tab in your workbook and select view code. This will open the VB editor. In the left hand window will be the 'Project Explorer', containing names of your sheets and an entry of 'ThisWorkbook'. Right-click on 'ThisWorkbook' and select 'View code' again. In the right-hand window is the code window with two drop-downs, change the left drop-down from 'General' to 'Workbook'. This will create the Workbbok_Open() sub for you. Copy the code above into this. Your code should then look like this: -
Private Sub Workbook_Open()
Dim ws As Worksheet
For Each ws In Worksheets
ws.ScrollArea = "A1:M100"
Next ws
End Sub
Save your workbook and close it. Now, when you re-open it, you will get a message asking if you want to run macros, click Yes, the code will then be activated and your scroll-areas will be set as above.
As I said above, change the line: -
ws.ScrollArea = "A1:M100"
to reflect the areas you want to be able to scroll to, e.g. if you want the area A1:N500 to be scrollable, change it to: -
ws.ScrollArea = "A1:N500"
Hope this is OK and good luck
.