cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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