I have a spreadsheet with 6500 entries. One column for those entries is file name, and refers to a PDF. All PDFs are in the same folder, so if the cell says bn27 then there's a file in this folder called bn27.pdf.
Is there a way too make the file names hyperlinks to their corresponding PDFs? Here's how I got it to "work", but I'd rather just have the original column turn in to hyper links:
I entered the beginning of the filename path in 1 field (D1). Let's pretend the path is C:\AwesomeStuff\
In a new column, I entered =HYPERLINK(CONCATENATE($D$1,A2,".pdf"),H2)
The CONCATENATE function obviously turns that formula into =HYPERLINK(C:\AwesomeStuff\________.pdf,__________) where ________ is the file name.
Doing it this way means I have to have data in D1 and that new column, which is just an exact copy of the original column, only this one has hyperlinks. I can hide the original column, but now my spreadsheet just looks hokie. I can already hear people asking where the A column went.
Any ideas on how I can just turn the original column into hyperlinks without adding all that other crap?
edit: the reason I put C:\AwesomeStuff\ in a field on the spreadsheet is because that folder name might change....so I'd be able to change it in one place and have that fix all the links. I guess I could have put it in the CONCATENATE function like ".pdf", edited that when needed, then dragged it down the column to change it.....but I didn't.
Is there a way too make the file names hyperlinks to their corresponding PDFs? Here's how I got it to "work", but I'd rather just have the original column turn in to hyper links:
I entered the beginning of the filename path in 1 field (D1). Let's pretend the path is C:\AwesomeStuff\
In a new column, I entered =HYPERLINK(CONCATENATE($D$1,A2,".pdf"),H2)
The CONCATENATE function obviously turns that formula into =HYPERLINK(C:\AwesomeStuff\________.pdf,__________) where ________ is the file name.
Doing it this way means I have to have data in D1 and that new column, which is just an exact copy of the original column, only this one has hyperlinks. I can hide the original column, but now my spreadsheet just looks hokie. I can already hear people asking where the A column went.
Any ideas on how I can just turn the original column into hyperlinks without adding all that other crap?
edit: the reason I put C:\AwesomeStuff\ in a field on the spreadsheet is because that folder name might change....so I'd be able to change it in one place and have that fix all the links. I guess I could have put it in the CONCATENATE function like ".pdf", edited that when needed, then dragged it down the column to change it.....but I didn't.