Select table, then columns
Hi, I am new using JMP and JSL and I am having trouble creating a script that selects a table, then 2 columns and then do something with that. Here is an example Names Default to Here( 1 );
// Make list of current tables
dtNames = {};
For(t=1, t<=NTable(), t++,
InsertInto(dtNames, DataTable(t) << getName);
);
// Select the table
nw = New Window("Test", <<Modal,
PanelBox("Pick a table",
d
...