this should be simple... but I sure can't see what the devil I'm doing wrong here
the formula below should work (if I'm following the examples I've seen off the web correctly, that is)
this code would go in C2 in the example/mock-up that I pasted below. The single row that is shown is row "2". The letters above the row are to represent which column it is.
(where G2 is the hyperlink address and E2 is the 'friendly name' in that cell that I want to use as the name for the hyperlink.
what is actually in C2 right now is this code:
this does work, btw... the above formula correctly references the hyperlink shown in column G, which itself is the result of combining column E and F.
Column E, btw, will always be the same. It represents the first part of the address for the hyperlink.
but when I insert this formula into C2:
it just shows up as: "=HYPERLINK(G2,E2)" in the cell...
I thought it might be due to a space I was using after the comma following "G2" (because the examples I found did not use a comma here) but that had no effect. Any thoughts/help/suggestions?
the formula below should work (if I'm following the examples I've seen off the web correctly, that is)
this code would go in C2 in the example/mock-up that I pasted below. The single row that is shown is row "2". The letters above the row are to represent which column it is.
VBA Code:
=HYPERLINK(G2,E2)
what is actually in C2 right now is this code:
VBA Code:
=HYPERLINK(F2, "DOT Closure Training – 2022")
this does work, btw... the above formula correctly references the hyperlink shown in column G, which itself is the result of combining column E and F.
Column E, btw, will always be the same. It represents the first part of the address for the hyperlink.
C: this is the result of the formula with the 'friendly name' in quotes above. | D: this is the first part of the location/address. it will always be the same. | E: this is the last part of the address. This is a unique name that will be different for each individual row.) | F: (F: is column D & column E combined) | G: (G is the hyperlink column... this represents the value of column F) |
DOT Closure Training – 2022 | J:\QMS_General Facility\Training\Training_Events\2022\ | HAZMAT_training_-_2022_-_Building_8 | J:\QMS_General Facility\Training\Training_Events\2022\HAZMAT_training_-_2022_-_Building_8 | J:\QMS_General Facility\Training\Training_Events\2022\HAZMAT_training_-_2022_-_Building_8 |
but when I insert this formula into C2:
VBA Code:
=HYPERLINK(G2,E2)
I thought it might be due to a space I was using after the comma following "G2" (because the examples I found did not use a comma here) but that had no effect. Any thoughts/help/suggestions?