<?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 JMP Script to detect the rows which are excluded in the data table ? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74410#M35811</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;may I ask,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is JMP Script able to detect the rows which are excluded in the data table and remove them automatically&amp;nbsp; ?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Sep 2018 04:17:28 GMT</pubDate>
    <dc:creator>XiangCD_MP_User</dc:creator>
    <dc:date>2018-09-20T04:17:28Z</dc:date>
    <item>
      <title>JMP Script to detect the rows which are excluded in the data table ?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74410#M35811</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;may I ask,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is JMP Script able to detect the rows which are excluded in the data table and remove them automatically&amp;nbsp; ?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 04:17:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74410#M35811</guid>
      <dc:creator>XiangCD_MP_User</dc:creator>
      <dc:date>2018-09-20T04:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script to detect the rows which are excluded in the data table ?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74448#M35812</link>
      <description>&lt;P&gt;Here is the example script taken directly from the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help==&amp;gt;Scripting Index&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; Select Rows( [5, 7, 8, 10, 15] );
dt &amp;lt;&amp;lt; Exclude( 1 );
dt &amp;lt;&amp;lt; Clear Select;
Wait( 2 );
dt &amp;lt;&amp;lt; Select Excluded;


// This line is added from the Delete Rows option in the Scripting Index
dt &amp;lt;&amp;lt; Delete Rows;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So the actual script you want is&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Current Data Table();

dt &amp;lt;&amp;lt; Select Excluded;
dt &amp;lt;&amp;lt; Delete Rows;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 04:39:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74448#M35812</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-09-20T04:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script to detect the rows which are excluded in the data table ?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74498#M35814</link>
      <description>Thank you, Jim.&lt;BR /&gt;This is what I am looking for.</description>
      <pubDate>Thu, 20 Sep 2018 05:30:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74498#M35814</guid>
      <dc:creator>XiangCD_MP_User</dc:creator>
      <dc:date>2018-09-20T05:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Script to detect the rows which are excluded in the data table ?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74657#M35839</link>
      <description>&lt;P&gt;Selecting Rows changes the state of your table, granted so does deleting rows so it's a mute point for your problem.&amp;nbsp; However, if you are interested in doing other things to these rows I would also suggest the get excluded rows function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;ex_rows = dt &amp;lt;&amp;lt; Get Excluded Rows;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 15:29:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Script-to-detect-the-rows-which-are-excluded-in-the-data/m-p/74657#M35839</guid>
      <dc:creator>msharp</dc:creator>
      <dc:date>2018-09-20T15:29:11Z</dc:date>
    </item>
  </channel>
</rss>

