In reference to Creating hyperlinks from Excel FlowChart to MS Word Heading
I need to know the proper syntax for creating a hyperlink from a Word document to a particular cell in an Excel workbook.
For instance: Let's say I want to add a hyperlink to the Excel file DataStuff, but to Cell ZX200, while I'm in the word document "Explaining." Without VBA/MACROS, how would I go about doing this manually?
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)
I would like to add that it should proceed to cell ZX200 rather than just opening DataStuff at cell A1, though. The following is ineffective. Could someone just improve the syntax?
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 useful documents. 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!