Im trying to write a script (so i can use it for JMP live) to dynamically apply spec limits queryed from another table.
My code to do this is below. Im not getting errors but its not working. I check the columns and they don't have the spec limits. The log is showing the following:spec_limits = {LSL(lsl), USL(usl), Show Limits(1)};
:Column_Name << Get Data Type() = "Character";
:LSL << Get Data Type() = "Numeric";
"Column:";
column_name = "MST";
"LSL:";
lsl = 9;
"USL:";
usl = 12.5;
spec_limits = {LSL(lsl), USL(usl)
...