I have copied from a website a series of hyperlinks and pasted them in a google sheet. The values show up as linked text, not hyperlink formulas, and are still linked correc
Found an answer that works on Google Groups (by Troy):
Could be done by Script, but I have no time now. :)
I was able to solve this for Jotform in a very simple way.
I was looking to include the Edit link in a query, but it would only give me the text "Edit Submission."
However, I noticed that I had the form ID in Column R. I was then able copy the JotForm link and combine it with the cell reference "https://www.jotform.com/edit/"&R2
You can use importxml to pull in the whole data table and it's contents with this:
=IMPORTXML(A1,"//tr")
next to it we pulled in the url strings in the tags
=IMPORTXML(A1,"//tr/td[1]/a/@href")
and finally concatenated the strings with the original domain to create your hyperlinks
=ARRAYFORMULA("http://www.bnilouisiana.com/"&INDIRECT("A2:A"&COUNTA(A2:A)))