Hello,
I have a linked summary table that I am trying to exclude rows based on some criteria of the cell contents for specific columns. The objective is for the rows in the linked table to also become excluded. I know it is possible to do this outside of JMP scripting but for some reason I get an error in JSL.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtSummary = dt << Summary( Group(:age), Link to original data table(1));
r = dtSummary << Get Rows Where(:age == 14);
r << Exclude;
My actual code has more complicated row selection criteria but the above example has the same idea.
The error returned is:
ERROR: Send Expects Scriptable Object in access or evaluation of 'Send' , r << Exclude;
I appreciate any help in advance.
Thx,
Ry