Forum Discussion
Cannot concatenate a hyperlink from another cell
I am working with office 365 and I have done this in previous versions but its not working now. I have a site with a html pages like 1.html, 2, html etc.
If I write in a cell http://www.mysite.com/1.html the link works fine
if I have a list of numbers in column a and column be is any of the following:
="http://www.mysite.com/" & a2 & ".html"
=hyperlink("http://www.mysite.com/" & a2 & ".html",a2)
=hyperlink("http://www.mysite.com/" & indirect("a2") &".html",a2)
The link is not formed properly. Even in the case of the first if I copy and paste values the spreadsheet shows http://www.mysite.com/1.html
but when I click on it I get an error "cannot connect to http://www.mysite.com/a2.html
Is this a bug or am I missing something.
Haim Katz
Hi h-i-k ;
I have tried your topic.
You must add http: // or https: // before the link
Like this :
=hyperlink("http://www.mysite.com/www.mysite.com/" & indirect("a2") &".html",a2)
You will find the file attachments the file that I created
4 Replies
- AbdallahBeraidaCopper Contributor
Hi h-i-k ;
I have tried your topic.
You must add http: // or https: // before the link
Like this :
=hyperlink("http://www.mysite.com/www.mysite.com/" & indirect("a2") &".html",a2)
You will find the file attachments the file that I created
- ewa1-1Copper Contributor
AbdallahBeraidaI am having a problem and ask for help:
In a spread sheet I have a column H filled in with links, I made them active by hyperlink function, and when trying to use it - every link sends me to the cell A1, i.e. doesn't work. I tried to set proper configuration in the Edit Hyperlink, nothing works.
Which I find strange as I have been using hyperlinks for many years, and they were always easily activated and working.. any idea?
thanks
- ewa1-1Copper Contributorsorry, should add: those are links to web
- h-i-kCopper Contributor
Thanks AbdallahBeraida. I thought I had tried that also but I see it works, so I guess I didn't.