cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar

Spec Limit

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