Open an Excel Spreadsheet to a Specfic Worksheet

J

Jody Baldwin

Good Morning,

I have tried the following with no luck...

c:/yourfolder/book1.xls#'sheet1'!A1

Any other ideas?

Thanks,

Jody
 
D

Dave Peterson

This worksheet formula worked ok for me:

=HYPERLINK("file:////c:/my documents/excel/book2.xls#sheet1!a1","click me")
 
G

Gord Dibben

Cannot be done via Command as you are attempting.

Sheets cannot be selected to open, only workbooks.

To open at a specific sheet you would need VBA like

Private Sub Workbook_Open()
Sheets("Sheet3").Activate
End Sub

Pasted into Thisworkbook module of the workbook being opened via the startup
command switch.

C:\yourpathto\book1.xls


Gord Dibben MS Excel MVP
 

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