concatenate funcion and new line

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • LuckyLouie
    Senior Member
    • Nov 2017
    • 172

    concatenate funcion and new line

    HI
    How to add new line when concatenate two field (name and linkToMeet)?

    I try:
    description= string\concatenate(name, ' <br /> ', ' Link to meeting: ',linkToMeet)
    description= string\concatenate(name, ' &nbsp; ', ' Link to meeting: ',linkToMeet)
    but it doesn't work
    Thanks in advance
  • shalmaxb
    Senior Member
    • Mar 2015
    • 1602

    #2
    I did not try, if it works, but maybe: "\r\n" Also try double quotes and single.
    And of course it depends on the target field, where you will present the concatenated string, which has to be able to display multiline (textbox or text editor).
    Last edited by shalmaxb; 02-09-2022, 09:15 PM.

    Comment

    • LuckyLouie
      Senior Member
      • Nov 2017
      • 172

      #3
      Originally posted by shalmaxb
      I did not try, if it works, but maybe: "\r\n" Also try double quotes and single.
      And of course it depends on the target field, where you will present the concatenated string, which has to be able to display multiline (textbox or text editor).
      It work's: ' \n '
      description= string\concatenate(name, ' \n ', ' Link to meeting: ',linkToMeet)

      Thank You!

      Comment

      Working...