How do i start Excel in a particular cell?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way that when i open Excel (whether in general or a particular
file) that it will begin in a particular cell; regardless of where the user
was when the file was closed??
Thanks in advance
 
Private Sub Workbook_Open()

Worksheets("Sheet1").Activate
Range("A1").Select

End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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

Back
Top