Reference to cell containing "HYPERLINK" function only returns friendly name text

agmanderson

New Member
Joined
Jan 31, 2019
Messages
1
I have a spreadsheet with a column of formulae, like this example:

=HYPERLINK("http...." & C2, left(B2,8))

Now let's say that formula is in cell D2. If I then go elsewhere on my spreadsheet and enter the formula =D2, all I get is plain text of the friendly name (argument 2 of the HYPERLINK function) and not the full, clickable hyperlink which is what I want (for complicated reasons).

Is there a way of getting the full hyperlink to appear in another cell, or must I re-generate it with another HYPERLINK function which will need much more complicated referencing (as it will be on a different sheet on a different, dynamically calculated row number)?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi Agm,
When you reference the cell D2 in an other cell you get its Text value, not its hyperlink setting.
In order to have the same hyperlink in another cell you need a formula like this:
Code:
[COLOR=#574123]=HYPERLINK("http...." & C2, D2)[/COLOR]
Cheers
Sergio
 
Upvote 0

Forum statistics

Threads
1,214,517
Messages
6,119,984
Members
448,935
Latest member
ijat

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top