Hi Guys,
I am trying to have my Variability charts generated automatically with LSL and USL. This is the code I am using.
This code runs but it does not generate the limits in the chart. Do you have any idea of what io am doing wrong?
DeltaVar= New Window("GRR Delta Report",
For(l=1, l<=Nitems(ListDelta),l++,
tres=Variability Chart(
Y(ListDelta[l]),
X(:Chan, :SN),
Model (Crossed),
Historical Sigma (0),
Connect Cell Means (1),
Show Group Means (1),
Show Grand Mean (0),
Show Grand Median (1),
XBar Control Limits (1),
S control Limits (1),
Std Dev Chart (0),
Mean Plots (0),
Mean of Std Dev (1),
Add Spec Limits({LSL(-0.1),USL(0.1)}),
Show Spec Limits(1),
);
);
);