From an earlier reply to a similar question:
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 the ThisWorkbook
module of the workbook and specify which worksheet, if only one sheet is
required.
Adjust the sheetname and range to suit.
Private Sub WorkBook_Open()
Sheets("YourSheet").ScrollArea = "A1
63"
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
63"
End With
End Sub
If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
Hope this helps,
Hutch