Announcement

Collapse
No announcement yet.

concatenate funcion and new line

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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

  • #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


    • #3
      Originally posted by shalmaxb View Post
      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...
      X