- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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