Skip to main content
June 22, 2022
Solved

RecordType - Relationship data display in summary page

  • June 22, 2022
  • 3 replies
  • 0 views

Hi,

I have a main recordType along with few relationship.

Now when I try to show one of the field data from the sub relationship, it was showing like a continuous data even though those are multiple record columns.

I would like to show some type of character like ";" at the end of each column data. Example x; y; z instead of xyz

Can someone advise on this. Thanks.

    Best answer by harshitb6843

    You can either use joinarray() or cast the entire list to string and that should automatically give you a semicolon in between. 

    3 replies

    anjup0143
    June 23, 2022

    Use joinarray(record.relationship.field,";")

    harshitb6843
    June 23, 2022

    You can either use joinarray() or cast the entire list to string and that should automatically give you a semicolon in between. 

    hari0002Author
    June 23, 2022

    Thank you.