I'm trying to simply get the value from a given column on the first selected row -- but somehow this is surprisingly hard. Here's what I have so far:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Probe.jmp" );
dt << Select Where( :Wafer Number == "16" & :Die X == 3);
selRow = ( dt << get selected rows() )[0];
Row() = selRow;
site = :Site; // returns "1", should return "5" (:Site from row 15)
I expect "site" to end up with 5, but it ends up with 1. What am I missing here?
Also note, I was trying something similar to this on a table with 33M rows, and JMP was unresponsive for several minutes. I was experimenting with different ways to do this so I may have inadvertently asked it to first create a list of 33M things then to take the 14M-th item. I hope whatever solution I end up with to the above question won't do that.