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?
This Oml will help you to build your logic
https://personal-udaksfpd.outsystemscloud.com/ListIntoString/ListToString?_ts=638948675756537474
Thanks Lokesh
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.