<?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: Select and Exclude Matching Rows based on date in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66588#M34459</link>
    <description>&lt;P&gt;Thanks. I actually intended to exclude those data for Column 3 as in actual case, I have other columns of data (from same rows)that may be useful. I tried with&amp;nbsp;dt &amp;lt;&amp;lt; Exclude rows(xx);&amp;nbsp; but does not seems to work. Any suggestion :)&lt;/img&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Aug 2018 10:28:00 GMT</pubDate>
    <dc:creator>adam</dc:creator>
    <dc:date>2018-08-06T10:28:00Z</dc:date>
    <item>
      <title>Select and Exclude Matching Rows based on date</title>
      <link>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66576#M34455</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 columns as shown. For some reasons, I am using formula to concatenate the Mth/Day and the end result is shown in column3. I would like to know how can I exclude cells(using script) that contain 01Jan1904 as I do no need them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 07:56:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66576#M34455</guid>
      <dc:creator>adam</dc:creator>
      <dc:date>2018-08-06T07:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select and Exclude Matching Rows based on date</title>
      <link>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66578#M34457</link>
      <description>&lt;P&gt;Since many different values that JMP cannot interpret will be displayed as January 01, 1904, try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);

dt=current data table();

xx = dt &amp;lt;&amp;lt; get rows where( year(:Column 3) == 1904 );

dt &amp;lt;&amp;lt; delete rows(xx);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Aug 2018 09:28:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66578#M34457</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-08-06T09:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Select and Exclude Matching Rows based on date</title>
      <link>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66588#M34459</link>
      <description>&lt;P&gt;Thanks. I actually intended to exclude those data for Column 3 as in actual case, I have other columns of data (from same rows)that may be useful. I tried with&amp;nbsp;dt &amp;lt;&amp;lt; Exclude rows(xx);&amp;nbsp; but does not seems to work. Any suggestion :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 10:28:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66588#M34459</guid>
      <dc:creator>adam</dc:creator>
      <dc:date>2018-08-06T10:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select and Exclude Matching Rows based on date</title>
      <link>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66630#M34463</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/9679"&gt;@adam&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Here try this if you want to exclude :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=current data table();

dt &amp;lt;&amp;lt; Select Where( year(:Column 3) == 1904 ) &amp;lt;&amp;lt; exclude; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Aug 2018 14:53:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66630#M34463</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2018-08-06T14:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select and Exclude Matching Rows based on date</title>
      <link>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66632#M34464</link>
      <description>&lt;P&gt;Thanks Uday!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also just found the solution from Scripting Guide. I has something like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; Select Where( :age &amp;gt; 13 );
dt &amp;lt;&amp;lt; Hide( 1 );&lt;BR /&gt;&lt;BR /&gt;// can change Hide to Exclude&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Either way, both are good.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 15:05:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-and-Exclude-Matching-Rows-based-on-date/m-p/66632#M34464</guid>
      <dc:creator>adam</dc:creator>
      <dc:date>2018-08-06T15:05:14Z</dc:date>
    </item>
  </channel>
</rss>

