I have a field in forms with the following calculation that is based on a previous single line field.
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(
UnparsedURL, " ", "%20"),
"&", "%26"),
"-", "%2D"),
"'", "%27"),
",", "%2C"),
"(", "%28"),
")", "%29")
It works perfectly in Excel, but it shows a blank line in Forms.
If I remove the parenthesis substitutes and have this below, then it works.
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(
UnparsedURL, " ", "%20"),
"&", "%26"),
"-", "%2D"),
"'", "%27"),
",", "%2C")