How to use Range Check () with Set Property()?
In JSL, the following works (in JMP 16.2)Column( dt, myCol ) << set property("Spec Limits", {LSL( myLSL), USL(myUSL)});
However, I am trying to also use Range Check within set property following the scripting guide (for JMP 16)Column( dt, myCol ) << set property("Spec Limits", {LSL( myLSL), USL( myUSL )}, "Range Check", LTLT (myLSL2, myUSL2) ));
where myLSL/myUSL & myLSL2/myUSL2 are supplied from a...