View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
AP[_3_] AP[_3_] is offline
external usenet poster
 
Posts: 33
Default on open, always display sheet1

Try this macro:

Sub Auto_open()
Sheets(1).select
cells(1,1).select 'If you want it to go to the A1 cell
End Sub

Cheers,
AP

"confused" wrote in message
...
Hi

is it possible to always force a particular worksheet to be the visible
active one every time the spreadsheet is opened?

So for example if I have sheet1 and sheet2, and save the spreadsheet while
in sheet2, the next time I open the spreadhseet, I want to force sheet1 to
be
the visible sheet.

is there some sort of 'on-open' function I could use with a macro that
directs to sheet1?

thanks for any help