Forum Discussion
Gabe24
Feb 03, 2022Copper Contributor
Link
I use multiple spreadsheets and to make it easier to quickly access the various spreadsheets, I created a master spreadsheet containing links to the other sheets. I click on the link and the spreadsh...
JKPieterse
Feb 04, 2022Silver Contributor
Are the links exactly the same?
Gabe24
Feb 04, 2022Copper Contributor
Each link in the master spreadsheet is for a different different Excel file. Each is unique to the particular file it accesses. The links were all created in the same manner in Excel, working in the spreadsheet, right click to bring up the menu, click on "Link" on the bottom of the menu and follow through to locate the desired file.
All links were working until one day they just stopped working. I have since recreated all the links and they work. I would very much like to know how or what caused the changes so this time consuming happening can be avoided in the future.
Thank you for any help/ insight you can give.
- JKPieterseFeb 07, 2022Silver ContributorI meant to say, when the links no longer worked, did they still contain the exactly right address, or did the address change in some way? If the address hasn't changed, try removing the link and writing it as flat text in a cell. Then use the HYPERLINK function to that cell like so (let's assume cell A2):
=HYPERLINK("file:"&A2)- Gabe24Feb 10, 2022Copper ContributorThe links having changed is a good point. I did check each link, they did not change. To get all 18 links working again I deleted all 18 and relinked the files to the spreadsheet using the same menus and steps that created the original links. It worked and continues to work, Until?? The linked spreadsheets are not on the same drive or folder as the master spreadsheet so I am wondering if the file address on one-drive may have varied/ changed enough to void the link. I did not compare the links that didn't work to the new links. Your thoughts?
- JKPieterseFeb 11, 2022Silver ContributorIf the address changed then it makes sense the hyperlink does not work. But if the address hasn't changed that is odd. One way to find out is to add the link in two different ways:
- Your existing method (which creates a hard-coded link)
- Using the HYPERLINK function. This method requires you to write the link into a cell as text (lets assume cell A2). Then in an adjacent cell, use =HYPERLINK("file:"&A2) to get a live link to the address which you wrote in cell A2.