<?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 Control chart warning - in table format to email in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Control-chart-warning-in-table-format-to-email/m-p/626085#M82484</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;For current control chart warning to email.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (I try to search it from JMP discussion but not able to find similar discussion, please help on it).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Q1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Scenario: 50 WAT items, run control chart alarm, there are 10 items with SPC rule violation.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1. Can we run JSL to summary the alarm item in table format- and mentioned the violation rule.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2. Can we have a link for each of items (link to somewhere like cloud) or send the control chart in attached file for the rule violation item ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 16:08:51 GMT</pubDate>
    <dc:creator>Lichun</dc:creator>
    <dc:date>2023-06-09T16:08:51Z</dc:date>
    <item>
      <title>Control chart warning - in table format to email</title>
      <link>https://community.jmp.com/t5/Discussions/Control-chart-warning-in-table-format-to-email/m-p/626085#M82484</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;For current control chart warning to email.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (I try to search it from JMP discussion but not able to find similar discussion, please help on it).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Q1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Scenario: 50 WAT items, run control chart alarm, there are 10 items with SPC rule violation.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1. Can we run JSL to summary the alarm item in table format- and mentioned the violation rule.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2. Can we have a link for each of items (link to somewhere like cloud) or send the control chart in attached file for the rule violation item ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:08:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-chart-warning-in-table-format-to-email/m-p/626085#M82484</guid>
      <dc:creator>Lichun</dc:creator>
      <dc:date>2023-06-09T16:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Control chart warning - in table format to email</title>
      <link>https://community.jmp.com/t5/Discussions/Control-chart-warning-in-table-format-to-email/m-p/632006#M83037</link>
      <description>&lt;P&gt;this example is from the scripting index for saving the summary to a new table via JSL&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" );
obj = dt &amp;lt;&amp;lt; Control Chart Builder( Variables( Y( :Weight ), Subgroup( :Sample ) ) );
obj &amp;lt;&amp;lt; Save Summaries;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;for #2, if you include a link you can make the table or data points go to the link&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is an old example from Ian Cox that might help to get you started.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = New Table( "ActionOnRowSelect",
			Add Rows( 5 ),
			New Property( "Bivariate",
				Bivariate(
					Y( :Y ),
					X( :X ),
					SendToReport(
						Dispatch(
							{},
							"Bivar Plot",
							FrameBox,
							Marker Drawing Mode( Outlined )
						)
					)
				)
			),
			New Column( "Selected Row",
				Numeric,
				Nominal,
				Format( "Best", 16 ),
				Formula(
					If( Selected( Row State( Row() ) ),
						Eval( Parse( :script ) );
						1;
					,
						0
					)
				)
			),
			New Column( "script",
				Character,
				Nominal,
				Set Values(
					{"Bivariate(Y( :X), X( :Y));", "Beep(); Dialog(\!"Hello 1\!")",
					"Beep(); Dialog(\!"Hello 2\!")", "Beep(); Dialog(\!"Hello 3\!")",
					"Web(\!"http://www.jmp.com\!", JMPWindow)"}
				)
			),
			New Column( "X",
				Numeric,
				Continuous,
				Format( "Best", 10 ),
				Set Values( [1, 2, 3, 4, 2] )
			),
			New Column( "Y",
				Numeric,
				Continuous,
				Format( "Best", 10 ),
				Set Values( [4, 3, 2, 1, 5] )
			)
		);
Column(dt, "Selected Row") &amp;lt;&amp;lt; Hide;
Column(dt, "Script") &amp;lt;&amp;lt; Hide;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2023 19:32:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Control-chart-warning-in-table-format-to-email/m-p/632006#M83037</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2023-05-15T19:32:19Z</dc:date>
    </item>
  </channel>
</rss>

