0

I'm trying to mix-in hyperlinks with text.

This works fine:

=HYPERLINK("http://www.google.com/")

But this gives me an error. I have seen both "Cannot open the specified file" and "The address of this site is not valid. Check the address and try again" in different workbooks:

="navigate here: " & HYPERLINK("http://www.google.com/")

I was expecting it to look something like this:


navigate here: http://www.google.com


What am I missing? Perhaps it can't be done? I need this to be in a single cell.

Suraj
  • 399

2 Answers2

1

This method would, unfortunately, make the entire cell clickable (hence, not just the link itself).

In the cell that contains your HYPERLINK(), right-click and select Format Cells > Number Tab > Custom.

Enter this into the "Type" box:

"Navigate Here: "@

enter image description here

0

Pick a cell and enter:

=HYPERLINK("http://www.google.com/","Navagate here:  http://www.google.com")

enter image description here

Basically embedding the text in the "friendly name".