cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
SpannerHead
Level VI

List to String

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 VI

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 VI

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

Recommended Articles