cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

List to String

SpannerHead
Level V

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-}


Slán



SpannerHead
2 ACCEPTED SOLUTIONS

Accepted Solutions
jthi
Super User


Re: List to String

SpannerHead
Level V


Re: List to String

Jarmo

 

Better than what I had for sure.  To get the delimiter, I did this.

 

Lots = Concat Items(List, ", ");

Slán



SpannerHead

View solution in original post

2 REPLIES 2
jthi
Super User


Re: List to String

Concat Items()?

-Jarmo
SpannerHead
Level V


Re: List to String

Jarmo

 

Better than what I had for sure.  To get the delimiter, I did this.

 

Lots = Concat Items(List, ", ");

Slán



SpannerHead