0
how to create space in text
I want to add 2 seperate field into 1 but i want to create at least 3 space in between
the program automatic makes field 1 + " " + field 2 into field 1 + " " + field 2
9 replies
-
Try Option+Space.
-
It worked - thnx very much
-
You can add this to your code:
let xsp := urlDecode("%20");
Then you can reference the variable xsp as many times as you need.
'field 1' + xsp + 'field 2' + xsp + xsp + xsp + 'field 3'
Content aside
- 1 yr agoLast active
- 9Replies
- 1564Views
-
3
Following