I am trying to insert the {% DocumentName %} into the subject line of an email link.
{% DocumentName %}
I need to fill the spaces in the name with %20. Is there a way to do that?
%20
I want to change my title from this to this:
This is my Title --> This%20is%20my%20Title
This is my Title
This%20is%20my%20Title
Using K# syntax you can use:
Replace(DocumentName, " ", "%20")
You are awesome Brenden. Thank you very much.
Please, sign in to be able to submit a new answer.