Hello!
I'm working on a script for an automated CPV exercise. So far I can already generate a report with control charts, a capability summary together with a conclusion for each parameter/attribute for any X amount of columns from the original JMP table (for-loop for each column).
My question here deals with the capability summary.
In the script, I use the "Process Capability(..)" functionality - from this, afterwards, I use the following line to only export the summary table (from the capability output) to my final report: "nw << append( Report( CAPREP )[Outline Box( 3 )] );" (where nw is my report and CAPREP was the process cability window).
This works fine - I get the following output:
For further optimization, I was hoping to:
- be able to "read" the individual values from the table to a parameter in my script. (reason: I want to write a conditional conclusion depending on the actual values of the ppl/ppu).
-> so I would like to have something like
PPL_VALUE = ....
PPU_VALUE = ...
- alter the value of the overall sigma to its value multiplied by three (so reading it to a parameter in my script, where I can change the value and then write it back to the summary)
-> so I would like to have something like
SIGMA_VALUE = ....
NEW_SIGMA=3*SIGMA_VALUE
... = NEW_SIGMA
I noticed from the "tree structure" following structure (for the table above):
So I'm guessing the line would incorporate something like the following: "Report(CAPREP)[OutlineBox(3),NumberColBox(5)] << ...", however so far without success.
Any thoughts?
Thanks in advance!
Kind regards
Jonas