DippNCope
Board Regular
- Joined
- May 21, 2009
- Messages
- 77
I have a spread sheet that in sheet1 has a a data validation list to sheet2 of hyperlinks to documents. the list in sheet2 to has friendly names. example sheet to shows test.doc with a hyperlink to X:\folder\folder\folder\test.doc
The list is in A8 and in A9 I have
hyperlinks is named range
This finds the value selected in A8 and creates a hyperlink to matching value hyperlink on sheet 2. So I find what I want in list on A8 then I have to click on A9 hyperlink that takes me to sheet 2 where I have to click on hyperlink to open document.
Can someone point me to a way that will allow me to just click in a9 and have it open matching value hyperlink on sheet 2.
The list is in A8 and in A9 I have
Code:
=HYPERLINK("#INDEX(hyperlinks,MATCH(A8,hyperlinks,0))","Click here to go to " & A8)
This finds the value selected in A8 and creates a hyperlink to matching value hyperlink on sheet 2. So I find what I want in list on A8 then I have to click on A9 hyperlink that takes me to sheet 2 where I have to click on hyperlink to open document.
Can someone point me to a way that will allow me to just click in a9 and have it open matching value hyperlink on sheet 2.