M
Mike
I posted this subject on Dec 31 and got great help. I
was given this code to use so that when I open my multi
sheet document, it would always open on a specified
sheet. I named first sheet A1 "StartPoint" and put in
this code, but it does not seem to work. Any ideas from
anyone??
Private Sub Workbook_Open()
Application.ScreenUpdating = False
Dim n As Integer
For n = 1 To Worksheets.Count
Worksheets(n).Select
Application.Goto Reference:=Range("a1"), Scroll:=True
Next n
Application.Goto Reference:="StartPoint", Scroll:=True
Application.ScreenUpdating = True
End Sub
was given this code to use so that when I open my multi
sheet document, it would always open on a specified
sheet. I named first sheet A1 "StartPoint" and put in
this code, but it does not seem to work. Any ideas from
anyone??
Private Sub Workbook_Open()
Application.ScreenUpdating = False
Dim n As Integer
For n = 1 To Worksheets.Count
Worksheets(n).Select
Application.Goto Reference:=Range("a1"), Scroll:=True
Next n
Application.Goto Reference:="StartPoint", Scroll:=True
Application.ScreenUpdating = True
End Sub