Open workbook on same sheet?

M

mevetts

Hi,

Is there a method that, no matter where a user is in a workbook when
they save it, when it's next opened it will open on a specific sheet.

Thanks,

Mark.
 
P

Peter Rooney

Hi,

Try pasting something like this into the "ThisWorkbook" code window:
(Alt+F11 then doubleclick "ThisWorkbook")
This code will always run when the workbook is opened

Hope this helps & Happy Christmas!

Pete


Private Sub Workbook_Open()
Sheets("Sheet1").activate
Range("A1").select
End Sub
 
Top