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-}
Jarmo
Better than what I had for sure. To get the delimiter, I did this.
Lots = Concat Items(List, ", ");
Jarmo
Better than what I had for sure. To get the delimiter, I did this.
Lots = Concat Items(List, ", ");