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

null
    • Sean
    • 5 yrs ago
    • Reported - view

    Try Option+Space.

      • dessein
      • 8 mths ago
      • Reported - view

       how to get option+space on ios Ninox?

    • Pianist
    • 5 yrs ago
    • Reported - view

    It worked - thnx very much

    • Fred
    • 8 mths ago
    • Reported - view

    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'
    
      • Sean
      • 8 mths ago
      • Reported - view

      Another option,

      html(First + " &nbsp " + Last)
      
      • dessein
      • 8 mths ago
      • Reported - view

       thanks!

      unfortunately same result…

      I have a fx formula field ‘label name’ defined as follows:

      let xsp := urlDecode("%20");
      Number + xsp + xsp + xsp + Name

      Output result is with one space only.

      • dessein
      • 8 mths ago
      • Reported - view

       thanks!

      This one works!!! 
      PS why a semicolon after the first &nbsp and last &nbsp, and not after the second &nbsp?

      • Sean
      • 8 mths ago
      • Reported - view

       copy & paste error 😅 

      • Fred
      • 8 mths ago
      • Reported - view

      That is interesting. I tried it in a join() and it worked so I guessed it would work in a simple +. I guess I am wrong.

Content aside

  • 8 mths agoLast active
  • 9Replies
  • 1530Views
  • 3 Following