Hi I found what you meant however when I try to run it this error comes up:
Names Default To Here( 1 );
platform = Data Table(
"table"
) << Variability Chart(
Y( :measurement ),
X( :Lot, :Instrument, :Operator, :Site ),
Model( "Main Effect" ),
Variance Components( 1 ),
SendToReport(
Dispatch(
{"Variance Components"},
"CV",
NumberColBox,
{Visibility( "Visible" )}
)
)
);
Wait( 0 );
Report( platform[1] )[Outline Box( "Variance Components" )][Table Box( 1 )] <<
Make Combined Data Table;
Report( platform[1] ) << Close Window;
That's the code for reference, firstly it's missing several variability charts, but even when I add them manually the same error pops up. Any ideas?