You can create a macro that runs each time excel opens that workbook. And you
can call that macro anytime you want (tools|macro|macros, select it and click
run).
This may give you a start:
Option Explicit
Sub auto_Open()
Dim wks As Worksheet
Dim myZoom As Long
Dim myAddr As String
myZoom = 80
myAddr = "C99"
For Each wks In ThisWorkbook.Worksheets
Application.Goto wks.Range(myAddr), scroll:=True
ActiveWindow.Zoom = myZoom
Next wks
ThisWorkbook.Worksheets(1).Select
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
> Dear Excel Gurus,
>
[quoted text clipped - 21 lines]
>
> Peter

Signature
Dave Peterson
Peter - 12 Feb 2007 00:28 GMT
Thankyou dave,
I will try your suggestion. I dont know anything about macros but now is my
chance to learn! Thanks for the tip about where to get info on macros.
Cheers,
Peter
> You can create a macro that runs each time excel opens that workbook. And you
> can call that macro anytime you want (tools|macro|macros, select it and click
[quoted text clipped - 47 lines]
> >
> > Peter