Where are possible fragments in Excel URLs documented?

5

1

When creating links to Excel files it is possible to add a fragment to the URL in order to specify a specific location (e.g. a certain sheet) which should be opened when the link is followed. See, for example, this question here on SU.

I am looking for a detailed documentation just what types of fragments are possible (e.g. ranges, named ranges, ...). Google & Co didn't help much, since all the results are about linking the content of cells between different Excel sheets (which is not what I'm after).

So:

In a link http://somehost.com/some_excel_file.xls#fragment, what are valid values for fragment?

Florian Brucker

Posted 2012-01-26T15:27:27.227

Reputation: 155

Answers

1

Yes, it is documented by Microsoft in Article ID: 197922 which covers what you are trying to do. Basically, after the # you place the tab name then !followed by the cell reference.

http://somehost.com/some_excel_file.xls#TabName!A1

If you are doing this in HTML of course you will use...

<a href="http://somehost.com/some_excel_file.xls#TabName!A1"> This link will open the Excel file to the named tab with the focus on cell A1</a>.

CharlieRB

Posted 2012-01-26T15:27:27.227

Reputation: 21 303

You are welcome. Glad to help. – CharlieRB – 2012-02-09T14:22:11.563