cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Q: How to use the setted spec limit/Target in formular?

Hi,

I am wondering how to use the setted spect limit data (Target) in formular?

For example(attach file):

The Column "NPN1" already setted USL/LSL/Target, and I would like to calculate (NPN1-Target) in the new column "shift"

How can I directly use (NPN1-Target) in formular instead of use (NPN1-118.15)? Thanks.

 

Chily_0-1701316141061.png

Regards,Chily

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Q: How to use the setted spec limit/Target in formular?

Here is one way to write the formula

As Constant( target = (:NPN1 << get property( "spec limits" ))["Target"] );
:NPN1 - Target;
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Q: How to use the setted spec limit/Target in formular?

Here is one way to write the formula

As Constant( target = (:NPN1 << get property( "spec limits" ))["Target"] );
:NPN1 - Target;
Jim

Recommended Articles