First, add that spec limit to the column property
In the example script above this part of the script does that.
:Pred Formula ABRASION <<Set Property( "Spec Limits", {LSL( 110 )} );
Then run the report like in the script above. For the next step to work, make sure to take note of this in the script.
obj = Profiler( ...
This lets the "report" be referenced by the variable "obj"
To get the data out of the report I need to tell JMP obj is actually a report.
Then I need to find the table I want in the tree structure. Grey Triangle next to Outline Bar, Right Click it, the Edit, and Show Tree Structure. From there find the name of the box that has the stuff you want.
Then send a message to that part of the report and have it made into a data table, like this.
objr=report(obj);
DefectTable=objr[TableBox( 3 )];
DDT=DefectTable<<Make Into Data Table;
Since you plan to iterate through a list of DOEs, I'd probably name the data table , "DDT" the name of the iteration or something, just to keep the table straight later.
ddt<<set name("Table Number "||char( i ));
JMP Systems Engineer, Health and Life Sciences (Pharma)