Announcement

Collapse
No announcement yet.

How to create new line during concatenate?

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

  • 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

  • #2
    Originally posted by ciryaj View Post
    /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...
    X