Post Closed
16
Views
3
Comments
list
Question

I have values in a list, and I want to display them as a simple comma-separated string showing the whole list. How can I do this?

2025-09-25 14-38-22
Lokesh Kumar Yadav

This Oml will help you to build your logic 

https://personal-udaksfpd.outsystemscloud.com/ListIntoString/ListToString?_ts=638948675756537474

ListIntoString.oml
UserImage.jpg
Marcus Aurelius

Thanks Lokesh

2016-04-22 00-29-45
Nuno Reis
 
MVP

The answer should be visible in the text to speed up finding. The oml is just an explanation.

Use action: String_Join(List, Separator)

Concatenates all the strings in a List, yielding a single string. The individual elements are separated, in the resulting string, by the string Separator.