cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Valerio
Level II

Spec Limits as Variable

Good afternoon.

 

I am trying to specify Spec Limits as a Variable and for some reason it does not work.

 

Please see below working code with explicit spec values =>

Data_Table_1:Column_with_Spec << Set Property( "Spec Limits", {LSL( 1 ), USL( 2 ), Show Limits( 1 )} );

Please see below not-working code with spec values as variables =>

LSL_var = 1;
USL_var = 2;
Data_Table_1:Column_with_Spec << Set Property( "Spec Limits", {LSL( LSL_var ), USL( USL_var ), Show Limits( 1 )} );

(If I use the variables "LSL_var" and "USL_var" in an "If" condition in a Formula they work.)

 

Why is this not working?

Thanks.

1 ACCEPTED SOLUTION
1 REPLY 1

Recommended Articles