Selecting rows and then further selecting based on that
I have a data table where I can select rows based on one columns result. I would like to then expand that selection based on a value contained in the previously selected rows.
I tried
dt = Current Data Table();
dr << select where( :ctrlrange > 0.23 );
h = Column( dt, "reagentkit_id" ) << get Values;
dt << select where( :reagentkit_id == h );
That didnt seem to work as JMP froze.
The dat...