cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

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