Care to post the VLOOKUP formula?
Aladin
Its the basic formula, ie
=VLOOKUP(1,Rawdata,2)
where Rawdata is the range name of the data table
Simon
Simon,
Can we carry out a little experiment?
Make the column with hyoerlinks the last column of your table and name RawData the range that excludes that column of hyperlinks. I'm proposing this because it sounds as if when VLOOKUP oes its job, the hyperlinks column undergoes a change. (By the way, I never heard of this prolem before.)
Aladin
The hyperlink field(s) in the RawData area are fine, i.e. they remain click-able links to the designated file. This is the same when the named RANGE includes or excludes the the column of hyperlinks.
But when VLOOKUP retrieves the selection, the hyperlink "hotspot" is lost. All you get is what is displayed in the hyperlink column.
Simon Simon, Can we carry out a little experiment? Make the column with hyoerlinks the last column of your table and name RawData the range that excludes that column of hyperlinks. I'm proposing this because it sounds as if when VLOOKUP oes its job, the hyperlinks column undergoes a change. (By the way, I never heard of this prolem before.)
> The hyperlink field(s) in the RawData area are fine, i.e. they remain click-able links to the designated file. This is the same when the named RANGE includes or excludes the the column of hyperlinks.
> But when VLOOKUP retrieves the selection, the hyperlink "hotspot" is lost. All you get is what is displayed in the hyperlink column.
I think I now understand what the issue is. You're looking up with VLOOKUP a hyperlink & and the retrieved hyperlink is not clickable. Right?
I suggest that you only record just the (non-clickable) URL's (e.g., 26693.html ) in your hyperlinks column in the RowData range. And use the following formula when you do a lookup for URL's:
=HYPERLINK(VLOOKUP(lookup-value,RawData,column-URLs,0),"Click Here)
This formula will make the retrieved URL clickable.
Aladin
That's it! Excellent!!
You can actually place *two* VLOOKUP commands within the HYPERLINK command; one for the click-able URL, and one for the "Click Here" equivalent.
My sincere thanks
Simon > The hyperlink field(s) in the RawData area are fine, i.e. they remain click-able links to the designated file. This is the same when the named RANGE includes or excludes the the column of hyperlinks. > But when VLOOKUP retrieves the selection, the hyperlink "hotspot" is lost. All you get is what is displayed in the hyperlink column. I think I now understand what the issue is. You're looking up with VLOOKUP a hyperlink & and the retrieved hyperlink is not clickable. Right? I suggest that you only record just the (non-clickable) URL's (e.g., 26693.html ) in your hyperlinks column in the RowData range. And use the following formula when you do a lookup for URL's: =HYPERLINK(VLOOKUP(lookup-value,RawData,column-URLs,0),"Click Here) This formula will make the retrieved URL clickable.