<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: phase control chart control limits - no control limits in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919264#M107853</link>
    <description>&lt;P&gt;Does also your first chart (or column) have fixed limits in column prooperties but you just wish to remove them? Or do you have a script which has fixed limits in the script and you just wish to leave one chart without those?&lt;/P&gt;</description>
    <pubDate>Sat, 13 Dec 2025 07:23:26 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-12-13T07:23:26Z</dc:date>
    <item>
      <title>phase control chart control limits - no control limits</title>
      <link>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919060#M107834</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="113" data-end="116"&gt;Hi,&lt;/P&gt;
&lt;P data-start="118" data-end="320"&gt;I need help scripting a case where &lt;STRONG data-start="153" data-end="227"&gt;no phase control limits should be applied to the first parameter/chart&lt;/STRONG&gt;, while the remaining parameters/charts have fixed control limits defined in the same script.&lt;/P&gt;
&lt;P data-start="322" data-end="367"&gt;I am currently using the following structure:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="contain-inline-size rounded-2xl corner-superellipse/1.1 relative bg-token-sidebar-surface-primary"&gt;
&lt;DIV class="sticky top-9"&gt;
&lt;DIV class="absolute end-0 bottom-0 flex h-9 items-center pe-2"&gt;
&lt;DIV class="bg-token-bg-elevated-secondary text-token-text-secondary flex items-center gap-4 rounded-sm px-2 font-sans text-xs"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="overflow-y-auto p-4" dir="ltr"&gt;&lt;CODE class="whitespace-pre! language-jsl"&gt;&lt;SPAN&gt;Set Control Limits(
{
    {LCL(.), Avg(.), UCL(.)}, 
    {LCL(1060.2), Avg(1405.3), UCL(1745.1)}, 
    {LCL(12.3), Avg(14.1), UCL(15.8)}, 
    {LCL(16), Avg(22), UCL(28)}
}
),
&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE class="overflow-visible! px-0!" data-start="369" data-end="555"&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P data-start="557" data-end="913"&gt;The issue is that JMP always displays a dialog asking for the limits of the &lt;STRONG data-start="633" data-end="642"&gt;first&lt;/STRONG&gt; chart. I must click &lt;STRONG data-start="663" data-end="669"&gt;OK&lt;/STRONG&gt; or &lt;STRONG data-start="673" data-end="683"&gt;Cancel&lt;/STRONG&gt; before the script continues. After dismissing the dialog, the first chart correctly shows &lt;STRONG data-start="774" data-end="801"&gt;no fixed control limits&lt;/STRONG&gt;, and the other three charts use the limits provided—but I want to &lt;STRONG data-start="868" data-end="912"&gt;prevent the dialog from appearing at all&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Dec 2025 13:26:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919060#M107834</guid>
      <dc:creator>UpliftLadybug10</dc:creator>
      <dc:date>2025-12-12T13:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: phase control chart control limits - no control limits</title>
      <link>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919264#M107853</link>
      <description>&lt;P&gt;Does also your first chart (or column) have fixed limits in column prooperties but you just wish to remove them? Or do you have a script which has fixed limits in the script and you just wish to leave one chart without those?&lt;/P&gt;</description>
      <pubDate>Sat, 13 Dec 2025 07:23:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919264#M107853</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-12-13T07:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: phase control chart control limits - no control limits</title>
      <link>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919265#M107854</link>
      <description>&lt;P&gt;Some scripting options with the assumption that the fixed limits are set in script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Quality Control/Coating.jmp");


// let JMP set them initially, using hidden not avoid display limit changes
ccb = dt &amp;lt;&amp;lt; Control Chart Builder(
	Variables(Subgroup(:Sample), Y(:Weight)),
	Chart(Position(1), Points(Statistic("Average")), Limits(Sigma("Moving Range"))),
	Chart(Position(2), Points(Statistic("Moving Range on Means")), Limits(Sigma("Moving Range"))),
	Chart(Position(3), Points(Statistic("Range")), Limits(Sigma("Range"))),
	Chart(Position(4), Points(Statistic("Range")), Limits(Sigma("Range"))),
	Show Control Panel(0),
	Invisible
);


// don't set them to first chart at all and let JMP do it
// I would use a list of limits and for-loop to set rest of the limits, but you could just copy paste this multiple times
ccb &amp;lt;&amp;lt; Chart(Position(2), Set Control Limits({LCL(1), Avg(3), UCL(6)}));
ccb &amp;lt;&amp;lt; Chart(Position(3), Set Control Limits({LCL(2), Avg(4), UCL(7)}));
ccb &amp;lt;&amp;lt; Chart(Position(4), Set Control Limits({LCL(3), Avg(5), UCL(8)}));

// Show the report again
wait(0);
ccb &amp;lt;&amp;lt; show window(1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Plenty of options for easier limit management, but here is one using list of lists (could also use data table, associative array, ...)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

CC_LIMITS = { 
	{LCL(1), Avg(3), UCL(6)}, 
	{LCL(2), Avg(4), UCL(7)}, 
	{LCL(3), Avg(5), UCL(8)}
};


dt = Open("$SAMPLE_DATA/Quality Control/Coating.jmp");

ccb = dt &amp;lt;&amp;lt; Control Chart Builder(
	Variables(Subgroup(:Sample), Y(:Weight)),
	Chart(Position(1), Points(Statistic("Average")), Limits(Sigma("Moving Range"))),
	Chart(Position(2), Points(Statistic("Moving Range on Means")), Limits(Sigma("Moving Range"))),
	Chart(Position(3), Points(Statistic("Range")), Limits(Sigma("Range"))),
	Chart(Position(4), Points(Statistic("Range")), Limits(Sigma("Range"))),
	Show Control Panel(0),
	Invisible
);


For(i = 2, i &amp;lt;= N Items(CC_LIMITS) + 1, i++,
	Eval(EvalExpr(
		ccb &amp;lt;&amp;lt; Chart(Position(i), Set Control Limits(Expr(CC_LIMITS[i-1])));
	));
);

wait(0);
ccb &amp;lt;&amp;lt; show window(1);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 13 Dec 2025 07:31:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/phase-control-chart-control-limits-no-control-limits/m-p/919265#M107854</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-12-13T07:31:08Z</dc:date>
    </item>
  </channel>
</rss>

