How to create new line during concatenate?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ciryaj
    Member
    • Mar 2018
    • 45

    How to create new line during concatenate?

    /n doesn't work
    formula looks like this
    description= string\concatenate(entity1,\n, entity2,\n,entity3);
    Should be displayed as
    entity1
    entity2
    enity3
  • ciryaj
    Member
    • Mar 2018
    • 45

    #2
    Originally posted by ciryaj
    /n doesn't work
    formula looks like this
    description= string\concatenate(entity1,\n, entity2,\n,entity3);
    Should be displayed as
    entity1
    entity2
    enity3
    Found the solution
    description= string\concatenate(entity1,'\n', entity2,'\n',entity3);

    Comment

    Working...