How can I set a workbook to open always with a certain sheet I wan

S

Shariq

I'd like to have the workbook set to open alway with a certain page, no
matter where I was last time working on it, but it should open always with a
certain page I want
 
N

Nick Hodge

Shariq

Use a Workbook_Open() event in the workbook

Private Sub Workbook_Open()
Worksheets("Sheet1").Activate
Range("A1").Select
End Sub

To implement, right-click the small Excel icon for the workbook and select
view code. Paste here and save

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
www.nickhodge.co.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top