script - delete or reorder colums
hi,
I would like to add "delete multiple columns" or "reorder multiple columns" to my script.
How can I code this into my scripts?
JMP help provides a simple description for a single column, but I can't do it manually for more than 100 columns.
Thank you in advance
A++
Zdenek
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt:height << Set Selected;
Wait(2);
dt << Delete Columns();
Edit (jthi): ad...