cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
martin_snogdahl
Level III

Extract list from Get List Check-command

Using the Get List Check command I get the following:

LC = col << Get List Check

The Log will show

LC = List Check({"Argon", "Krypton", "Air"});

How do I extract the list from inside the List Check()-statement? I want to end up with a variable containing the list.

LC_list = {"Argon", "Krypton", "Air"}

1 REPLY 1
ian_jmp
Staff

Re: Extract list from Get List Check-command

Take a look in the Scripting Index for 'Head()' and 'Arg()'.

// Make a table

dt =

New Table( "List Check",

Add Rows( 0 ),

New Column( "Check",

Character,

"Nominal",

List Check( {"A", "B", "C"} ),

Set Values( {} )

)

);

// Get the values of a List Check property into a list

lc = Column(dt, "Check") << getListCheck;

lcList = Arg(lc, 1);