Reputation: 2048
In reference to Creating hyperlink from Excel FlowChart to MS Word Heading
I would like to know the correct syntax to hyperlink to a specific cell in an Excel Workbook from a Word document.
For example: Say I am in word document "Explaining" and I want to insert a hyperlink to the Excel file DataStuff, but to Cell ZX200. How would I do this manually, without VBA/MACROS?
I already know that to hyperlink to DataStuff I would type
File:///c:\users\Win7User\desktop\DataStuff.xlsx
Then hit ENTER. (It then becomes an underlined hyperlink. Clicking on it opens DataStuff)
However, I want to add the fact that it should goto cell ZX200, not just open DataStuff at cell A1. The following does NOT work. Can someone fix the syntax for me?
Does not work:
File:///[c:\users\Win7User\desktop\DataStuff.xlsx]Sheet1!ZX200
I don't get how the Excel to Word question was answered in about 10 minutes, and my Word to Excel question accumulated crickets and tumbleweed. No MS Word experts??
I've figured it out after browsing many useless, and one useful document. The correct syntax is:
File:///c:\users\Win7User\desktop\DataStuff.xlsx#Sheet1!ZX200
That should be typed into your word document, and will go to cell ZX200 in worksheet Sheet1 in Excel. Using the information fro the hyperlink I had in my question, you now have a wonderful BIJECTION between Word and Excel hyperlinking. So that when you send people somewhere, you can also send them back!
http://www.shaunakelly.com/word/word-and-excel/excelhyperlinks.html
Upvotes: 10
Views: 33205
Reputation: 11
I've been reading through these links and may have another solution for the non-VS guru (like me).
Save & close Excel workbook.
Open the Word document and create your text (Question 022) , highlight and insert a hyperlink.
We have inserted and deleted rows to make sure the reference of the Excel NAME sticks with the cell range when selecting the hyperlink in Word.
Upvotes: 1
Reputation: 1
I believe the intended question relates to a permanent link to a specific Excel value even if the value moves to a new cell. With Paste Link, if a row or column is inserted above or below the desired value, the referenced cell no longer contains the desired value. The integrity of the link is compromised, bring incorrect data or blank data into the Word doucment. Ideally, the user could use a Named Range in Excel and hyperlink to the named range. The named range will still follow the value if the item is moved in Excel.
Upvotes: 0
Reputation: 5834
All you need to do is copy the cell in Excel that you want to reference, then in Word, in the location where you want the link to be, you will 'Paste Special' > 'Link & Merge Formatting'
What then happens is a Field is inserted in Word (that won't look like a hyperlink, but will be greyed out if the cursor is placed in the text). This field can link back to the specific cell in the Excel file by doing the following steps:
Linked Worksheet Object
> Open Link
Your Excel file should open up to the desired cell.
Upvotes: 1
Reputation: 4065
The most concise explanation I've found of the various ways to do this (Office 2013) is actually in the dialog that pops up on opening a file that contains links (after expanding the Show Help
button). The first 2 options are relevant for Excel:
The text of which lists your options for creating links:
- By using the Paste Special command (on the Home tab, in the Clipboard group, click the arrow below Paste, and then click Paste Special) and then clicking the Paste link option.
- By using the Object command (on the Insert tab, in the Text group, click Object, and then click Object) and then clicking the Link to file option on the Create from File tab.
- By using the Link to File or Insert and Link command in the Insert Picture dialog box (on the Insert tab, in the Illustrations group, click Picture, and then click the arrow next to Insert).
You can also manage many links in one place quite easily as described in this article, which also visually illustrates the above procedures. Options include automatic/manual updates and locking current values from updating.
Upvotes: 0