A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
How can I align my screen so that when my macro is complete my view of Z1 is in the location of A1.
I'll assume that by "... Z1 is in the location of A1" you mean in the top left corner of the worksheet window. Try,
' some code
Application.ScreenUpdating = True
Cells(Rows.Count, Columns.Count).Activate
Application.Goto Reference:="R1C26"
' some code