A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If this would work, you can place the active cell at the upper left of the display with a shortcut that runs the following macro.
Sub UpperLeft()
Application.Goto ActiveCell, True
End Sub
( True to scroll through the window so that the upper-left corner of the range appears in the upper-left corner of the window. )