Forum Discussion
Maria
4 days agoCommunity Manager
I think I have spotted the issue. The old form appears to not be such a stickler for syntax. Maybe?
An HTML link needs quotes around the URL. I believe your original formula doesn't keep quotes around the URL. A typical HTML link looks like this:
<a href="https://www.w3schools.com/tags/att_a_href.asp">Visit W3Schools</a>
I believe your formula generates this instead:
<a href=https://www.w3schools.com/tags/att_a_href.asp>Visit W3Schools</a>
Notice how the URL doesn't have quotes around it. Try the scrap of code below to add in the missing quotes:
"<a href=\"" & $URL & "\">" & $Words & "</a>"
Adding a \ before a character that would otherwise be read as code is called "escaping" that character.