Hi,
Does anyone know of a way to escape special characters in a text formula field? I am trying to add a customised web link into a text formula field in the format: https://www.formtool.com/form1?entry={“field1”:“data”,“field2”:“data2”,“field3”:“data3”}
I’m trying to pull “data” and data2 from Knack fields.
I can get the URL to work without the {}, but as soon as I add the { and } into the URL, the URL is appended with additional content. I’ve also tried %7B and %7D, as well as { and }, but these also do the same things.
this is how it outputs with the {} or %7B and %7D:
https://www.www.formtool.com/form1?entry={{“formatted_value”:“\“field1\”:\“data\”,\“field2\”:\“data2\”,\“field3\”:\“data3\””}}
(you can see it adds a formatted_value section, and also adds \ between values and data).
Any ideas how this could be addressed?