I have a Workbook that will constantly be growing as the years progress. One one sheet I have all of the project information collected in 25 columns and an ever expanding number of rows (currently over 1500). To assist the users I have created another worksheet within the notebook that they can use to look up individual 'records' (rows) in the table. I am using the vlookup function in an effort arrange the data and to make it more readable to the users.
This is all working great but I was hoping to add one final 'simple' tool: I want the users to be supplied with a 'hyperlink' to the original row (on a separate worksheet within the workbook) that contains all of the information. I thought I could use something like the following to get them there:
Note that the purpose of the vlookup in this case is to return the row reference (project numbers start on 7001 and on row 3 -- hence the '-6998' part) so I can add that using concatenate to the hyperlink.
Unfortunately it returns the following error:
"Cannot Open the Specified File"
I am probably making this much harder than it needs to be, and am hoping you have a much simpler solution. Thanks in advance, I appreciate it!
This is all working great but I was hoping to add one final 'simple' tool: I want the users to be supplied with a 'hyperlink' to the original row (on a separate worksheet within the workbook) that contains all of the information. I thought I could use something like the following to get them there:
Code:
=HYPERLINK(CONCATENATE("file:///\\360_PPM\DATA\Shared\Staff Users\John Doe\Project Status Updates 2008.xls - 'Project List'!","A",(VLOOKUP($B$2,'Project List'!$C$3:$P$351,1,FALSE)-6998)),"More Information")
Note that the purpose of the vlookup in this case is to return the row reference (project numbers start on 7001 and on row 3 -- hence the '-6998' part) so I can add that using concatenate to the hyperlink.
Unfortunately it returns the following error:
"Cannot Open the Specified File"
I am probably making this much harder than it needs to be, and am hoping you have a much simpler solution. Thanks in advance, I appreciate it!