<?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 How to auto Save Spec Limits as Column Properties of manage spec window in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-auto-Save-Spec-Limits-as-Column-Properties-of-manage-spec/m-p/729376#M91178</link>
    <description>&lt;P&gt;Hi, JMPer&lt;/P&gt;&lt;P&gt;Currently, I used below jsl.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;obj = dt &amp;lt;&amp;lt; 
	Manage Limits(
	Process Variables(:FAI_1, :FAI_2, :FAI_3, :FAI_4, :FAI_5
	),
	Load From Limits Table( "LIMIT.jmp" ),
	SendToReport( Dispatch( {}, "Spec Limits", OutlineBox, {Close( 1 )} ) ),
);

obj &amp;lt;&amp;lt; Show Limits All;
obj &amp;lt;&amp;lt; Save Spec Limits as Column Properties;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It need to manual click&amp;nbsp;Save Spec Limits as Column Properties of manage spec window. Then the spec limits will effective on graph build.&lt;/P&gt;&lt;P&gt;How to auto Save Spec Limits as Column Properties of manage spec window?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CompleteLeopard_0-1709360673175.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61737iED77DA0EB878E315/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CompleteLeopard_0-1709360673175.png" alt="CompleteLeopard_0-1709360673175.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Save Spec Limits as Column Properties;&lt;/P&gt;</description>
    <pubDate>Sat, 02 Mar 2024 06:40:06 GMT</pubDate>
    <dc:creator>CompleteLeopard</dc:creator>
    <dc:date>2024-03-02T06:40:06Z</dc:date>
    <item>
      <title>How to auto Save Spec Limits as Column Properties of manage spec window</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-auto-Save-Spec-Limits-as-Column-Properties-of-manage-spec/m-p/729376#M91178</link>
      <description>&lt;P&gt;Hi, JMPer&lt;/P&gt;&lt;P&gt;Currently, I used below jsl.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;obj = dt &amp;lt;&amp;lt; 
	Manage Limits(
	Process Variables(:FAI_1, :FAI_2, :FAI_3, :FAI_4, :FAI_5
	),
	Load From Limits Table( "LIMIT.jmp" ),
	SendToReport( Dispatch( {}, "Spec Limits", OutlineBox, {Close( 1 )} ) ),
);

obj &amp;lt;&amp;lt; Show Limits All;
obj &amp;lt;&amp;lt; Save Spec Limits as Column Properties;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It need to manual click&amp;nbsp;Save Spec Limits as Column Properties of manage spec window. Then the spec limits will effective on graph build.&lt;/P&gt;&lt;P&gt;How to auto Save Spec Limits as Column Properties of manage spec window?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CompleteLeopard_0-1709360673175.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61737iED77DA0EB878E315/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CompleteLeopard_0-1709360673175.png" alt="CompleteLeopard_0-1709360673175.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Save Spec Limits as Column Properties;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 06:40:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-auto-Save-Spec-Limits-as-Column-Properties-of-manage-spec/m-p/729376#M91178</guid>
      <dc:creator>CompleteLeopard</dc:creator>
      <dc:date>2024-03-02T06:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to auto Save Spec Limits as Column Properties of manage spec window</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-auto-Save-Spec-Limits-as-Column-Properties-of-manage-spec/m-p/729401#M91181</link>
      <description>&lt;P&gt;Here is an example of using Manage Limits where the limits are applied without having to do any manual clicking&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dtLimits = New Table( "Cities Limits",
	Add Rows( 4 ),
	New Column( "Process", Character, Set Values( {"OZONE", "CO", "SO2", "NO"} ) ),
	New Column( "LSL", Numeric, Set Values( [0, 0, 0, 0] ) ),
	New Column( "Target", Numeric, Set Values( [0.2, 15, 0.05, 0.035] ) ),
	New Column( "USL", Numeric, Set Values( [0.4, 30, 0.1, 0.07] ) ),
	Set Label Columns( :Process )
);
dt = Open( "$SAMPLE_DATA/Cities.jmp" );
obj = dt &amp;lt;&amp;lt; Manage Limits(
	Process Variables( :OZONE, :CO, :SO2, :NO ),
	Load From Limits Table( dtLimits )
);
obj &amp;lt;&amp;lt; Save to Column Properties;
obj &amp;lt;&amp;lt; close window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 02 Mar 2024 10:02:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-auto-Save-Spec-Limits-as-Column-Properties-of-manage-spec/m-p/729401#M91181</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-03-02T10:02:24Z</dc:date>
    </item>
  </channel>
</rss>

