cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

Spec Limit

OneSidedCharts1
Level I

Hi,

I would like to ask if I set a particular column with spec limit(eg. low:100 and max:1000), from this limit set how can I create a corresponding column say Pass/Fail column to label those data within limit as Pass and out of spec as Fail.

Thank you.

 

 

 

here some best live sex cam sites: Dildo Cams, Ebony Cams, Couples Cams
1 REPLY 1
jthi
Super User


Re: Spec Limit

You could create formula like this:

spec = :param << Get Property("Spec Limits");
If(:param < spec["LSL"] | :param > spec["USL"],
	"FAIL",
	"PASS"
);

but depending on how your data is structured and what you want to do, this might not be the best solution. Attached datatable should have the formula already there

-Jarmo