Select/Where Statement Pulls from List
Hi! Not sure if the title describes this issue the best, but I feel like I am on the verge of getting this figured out. I have one JMP table with a column TestID and I want to select rows from another data table based on the variable TestID list. dt = Open("Lot List2.jmp");
ID_list = Column( dt, "TestID" ) << Get values;
dt1= Open Database("Connection",
"SELECT
[TestID]
,[Device]
,[FailureMode
...