Opening specific worksheet from hyperlink

A

AndrewMead

I can open a workbook from a hyperlink on a webpage, but I want to have
several links which will open specific worksheets within the workbook. Can I
do this and if so, how do I specify the sheet?
 
D

Dave Peterson

I don't speak HTML, but maybe:

<a href="file://c:/yourfolder/book1.xls#'sheet 1'!A1">click me</a>
 
A

AndrewMead

I'll try it!
Thanks to both replies

Dave Peterson said:
I don't speak HTML, but maybe:

<a href="file://c:/yourfolder/book1.xls#'sheet 1'!A1">click me</a>
 
Top