After generating a new script in a data table through JSL, why does the operation behind the original JSL stop?
For example the following JSL
Does it finish adding scripts and then stop working?Thanks!dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Eval(
Parse(
"dt<<new script(\!"test\!",
dt<<Select Columns(ncol(dt));dt<<Move Selected Columns(after(Column(1)));
"
)
);
//??
New Column( "AA" );