Is it possible to report the full data on one page (including non-conformances) and just the non-conformances on another page?
Report Nonconformances
Collapse
X
-
Yes. By default, all dimensions are set to output on the report, solving part 1 of your request.
Making a redundant plot of just the OOT's can be done a few ways. you can use flow control, (if dim passes skip) or you can assess which dimensions are outtol, like below
Code:ASSIGN/OT9=SUM(ARRAY(AA_9.D.OUTTOL <> 0, AC1_9.M.OUTTOL <> 0, AC2_9.M.OUTTOL <> 0, AC3_9.M.OUTTOL <> 0, AD_9.D.OUTTOL <> 0, AE_9.M.OUTTOL <> 0, AF_9.M.OUTTOL <> 0)) ASSIGN/OT10=SUM(ARRAY(AA_10.D.OUTTOL <> 0, AC1_10.M.OUTTOL <> 0, AC2_10.M.OUTTOL <> 0, AC3_10.M.OUTTOL <> 0, AD_10.D.OUTTOL <> 0, AE_10.M.OUTTOL <> 0, AF_10.M.OUTTOL <> 0)) ASSIGN/OT11=SUM(ARRAY(AA_11.D.OUTTOL <> 0, AC1_11.M.OUTTOL <> 0, AC2_11.M.OUTTOL <> 0, AC3_11.M.OUTTOL <> 0, AD_11.D.OUTTOL <> 0, AE_11.M.OUTTOL <> 0, AF_11.M.OUTTOL <> 0)) ASSIGN/OT12=SUM(ARRAY(AA_12.D.OUTTOL <> 0, AC1_12.M.OUTTOL <> 0, AC2_12.M.OUTTOL <> 0, AC3_12.M.OUTTOL <> 0, AD_12.D.OUTTOL <> 0, AE_12.M.OUTTOL <> 0, AF_12.M.OUTTOL <> 0)) ASSIGN/OT13=SUM(ARRAY(AA_13.D.OUTTOL <> 0, AC1_13.M.OUTTOL <> 0, AC2_13.M.OUTTOL <> 0, AC3_13.M.OUTTOL <> 0, AD_13.D.OUTTOL <> 0, AE_13.M.OUTTOL <> 0, AF_13.M.OUTTOL <> 0)) ASSIGN/OT14=SUM(ARRAY(AA_14.D.OUTTOL <> 0, AC1_14.M.OUTTOL <> 0, AC2_14.M.OUTTOL <> 0, AC3_14.M.OUTTOL <> 0, AD_14.D.OUTTOL <> 0, AE_14.M.OUTTOL <> 0, AF_14.M.OUTTOL <> 0)) ASSIGN/OT15=SUM(ARRAY(AA_15.D.OUTTOL <> 0, AC1_15.M.OUTTOL <> 0, AC2_15.M.OUTTOL <> 0, AC3_15.M.OUTTOL <> 0, AD_15.D.OUTTOL <> 0, AE_15.M.OUTTOL <> 0, AF_15.M.OUTTOL <> 0)) ASSIGN/OT16=SUM(ARRAY(AA_16.D.OUTTOL <> 0, AC1_16.M.OUTTOL <> 0, AC2_16.M.OUTTOL <> 0, AC3_16.M.OUTTOL <> 0, AD_16.D.OUTTOL <> 0, AE_16.M.OUTTOL <> 0, AF_16.M.OUTTOL <> 0)) ASSIGN/WHATCAVI=IF(OT9<>0,"#9, ","")+IF(OT10<>0,"#10, ","")+IF(OT11<>0,"#11, ","")+IF(OT12<>0,"#12, ","")+IF(OT13<>0,"#13, ","")+IF(OT14<>0,"#14, ","")+IF(OT15<>0,"#15, ","")+IF(OT16<>0,"#16, ","") IF/SUM(ARRAY(OT1,OT2,OT3,OT4,OT5,OT6,OT7,OT8,OT9,OT10,OT11,OT12,OT13,OT14,OT15,OT16)) == 0 GOTO/CONTINUEOUTPUT
Related Topics
Collapse
-
by granpagusv4.3mr1
I'm trying to tie all pages of a report together using a label template to print information on each page of a report.
It works...-
Channel: PC-DMIS for CMMs
03-19-2009, 11:53 PM -
-
by homer.tanHey,
I suddenly ran across a problem with report. The first page of my report displayed blank. But if you change from textonly to textand...-
Channel: PC-DMIS for CMMs
03-26-2012, 04:25 PM -
-
by EvrenIs it possible to display Cad x, y and z in one page on (report page?) so using 3 images in one page
-
Channel: PC-DMIS for CMMs
10-09-2020, 06:09 AM -
-
by yurikHi
So my report should be 3 pages, but it gives me 4 instead and the #2 page is blank, does anyone know how to get rid of that blank page? I don't...-
Channel: PC-DMIS for CMMs
09-17-2013, 10:25 AM -
-
by LuckyjaxonI am having a new problem with the report page. I ran a program that spits out 9 pages of report, but the 1st page is coming out blank. The only thing...
-
Channel: PC-DMIS for CMMs
02-11-2010, 09:36 AM -
Comment