cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Due to global connectivity issues impacting AWS Services, users may experience unexpected errors while attempting to authorize JMP. Please try again later or contact support@jmp.com to be notified once all issues are resolved.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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