Good Afternoon All,
I'm using the following code from another post, for a multi-person name in a HTML table:
join(xpath(xml(json(concat('{"body":{"value":', item()?['PersonColumn'] , '}}'))), '/body/value/DisplayName/text()'), ', ')
With this code the name shows in the table, however its in the following format:
John Doe, Jane Doe
How do I modify the code so that it shows the name in the following format instead:
John Doe
Jane Doe
Any help you can provide would be greatly appreciated.
Thank You