I want to take a list and express the entire list as a comma separated string. My purpose is to name the finished data table to include all the items in the list.
Char(List_items);
Works but it's ugly, is there a better way?
{-Item 1-, -Item 2-}
Go to Solution
Concat Items()?
View solution in original post
Jarmo
Better than what I had for sure. To get the delimiter, I did this.
Lots = Concat Items(List, ", ");