Google-sheets – insert an hyperlink into a non empty cell of a Google Spreadsheets documents

google sheets

my problem is that if I add something like this in an empty cell of a Google Spreadsheets documents it work great

=HYPERLINK("www.google.co.uk"; "Google")

But If I add this link to a non empty cell it don't work.

For example if the content of my cell is something like to:

Linkt to interesting post: =HYPERLINK("www.google.co.uk"; "Google")

I can't see the hyperlink. Why? Can I do this thing in some way?

Tnx

Andrea

Best Answer

In order to combine text and formulas, the text must be wrapped in quotes, and concatenated to the link:

="Link to interesting post: " & HYPERLINK("http://www.google.com"; "Google")