cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

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