Set Spec Limits Using a Variable Instead of a Hard Coded Number
Hello, I am trying to automate setting spec limits for a column. It seems that this process is easily done using a hard coded value, but doesn't work when you input the spec limit as a variable. So this works:Column(4) << Set Property("Spec Limits", {LSL(0), USL(1), Show Limits(1)});
But this does not:lowerLimit = 0;
upperLimit = 1;
Column(4) << Set Property("Spec Limits", {LSL(lowerLimit), USL(
...