@jthi Thanks. While I wait for understand how to automate this "OK" step for each measured parameter

 
If I try the following from above in my JM 16.2.0,
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
var = dt << Variability Chart(
	Y(:NPN1, :PNP1, PNP2),
	Model("Main Effect"),
	X(:SITE),
	Variability Analysis(:NPN1, "Gauge R&R Report"n(1)),
	Variability Analysis(:PNP1, "Gauge R&R Report"n(1))	
);
Wait (0);
rpt ["Variability Gauge", "Variability Gauge Analysis for PNP1", "Gauge R&R", Table Box[1]] <<Make Combined Data Table;
rpt << Close Window;
I get an error
Name Unresolved: rpt in access or evaluation of 'rpt' , rpt/*###*/
most likely as I haven't defined rpt. The following with script copied from JMP also throws an error 
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
platform = dt << Variability Chart(
	Y(:NPN1, :PNP1, PNP2),
	Model("Main Effect"),
	X(:SITE),
	Variability Analysis(:NPN1, "Gauge R&R Report"n(1)),
	Variability Analysis(:PNP1, "Gauge R&R Report"n(1))	
);
Wait (0);
//rpt ["Variability Gauge", "Variability Gauge Analysis for PNP1", "Gauge R&R", Table Box[1]] <<Make Combined Data Table;
//rpt << Close Window;
Report( platform[1] )[Outline Box( "Gauge R&R" )][Table Box( 1 )] <<
Make Combined Data Table;
Report( platform[1] ) << Close Window;
I need some help to proceed.
 
					
				
			
			
				
	When it's too good to be true, it's neither